[3.11] gh-103668: Run pyugrade on idlelib (GH-103671) (#103730)

---------
(cherry picked from commit bd2dca035a)
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Co-authored-by: Terry Jan Reedy tjreedy@udel.edu
This commit is contained in:
Miss Islington (bot) 2023-04-23 18:09:46 -07:00 committed by GitHub
parent 7b2ac6cf3d
commit 5054459678
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 50 additions and 50 deletions

View file

@ -309,7 +309,7 @@ class CommandSequence(Command):
s = self.__class__.__name__
strs = []
for cmd in self.cmds:
strs.append(" %r" % (cmd,))
strs.append(f" {cmd!r}")
return s + "(\n" + ",\n".join(strs) + "\n)"
def __len__(self):