summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/debugobj.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-04-24 01:09:46 (GMT)
committerGitHub <noreply@github.com>2023-04-24 01:09:46 (GMT)
commit5054459678db1f9737e31b96a859112dbac98c52 (patch)
tree68abcce9e4295ab2c6c42342345406d0bd3c6006 /Lib/idlelib/debugobj.py
parent7b2ac6cf3dd33d591d0e14a020c84aa331d29932 (diff)
downloadcpython-5054459678db1f9737e31b96a859112dbac98c52.zip
cpython-5054459678db1f9737e31b96a859112dbac98c52.tar.gz
cpython-5054459678db1f9737e31b96a859112dbac98c52.tar.bz2
[3.11] gh-103668: Run pyugrade on idlelib (GH-103671) (#103730)
--------- (cherry picked from commit bd2dca035af88694e25fb060f984fbbcda82bed8) Co-authored-by: Nikita Sobolev <mail@sobolevn.me> Co-authored-by: Terry Jan Reedy tjreedy@udel.edu
Diffstat (limited to 'Lib/idlelib/debugobj.py')
-rw-r--r--Lib/idlelib/debugobj.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/debugobj.py b/Lib/idlelib/debugobj.py
index 5a4c997..71d01c7 100644
--- a/Lib/idlelib/debugobj.py
+++ b/Lib/idlelib/debugobj.py
@@ -87,7 +87,7 @@ class SequenceTreeItem(ObjectTreeItem):
continue
def setfunction(value, key=key, object=self.object):
object[key] = value
- item = make_objecttreeitem("%r:" % (key,), value, setfunction)
+ item = make_objecttreeitem(f"{key!r}:", value, setfunction)
sublist.append(item)
return sublist