From 136c8e07955392676680c8e29ab96017127b6672 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sun, 11 Feb 2018 08:00:11 -0800 Subject: Code beautification using f-strings (#5618) --- Lib/collections/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 9a753db..3109054 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -933,8 +933,7 @@ class ChainMap(_collections_abc.MutableMapping): @_recursive_repr() def __repr__(self): - return '{0.__class__.__name__}({1})'.format( - self, ', '.join(map(repr, self.maps))) + return f'{self.__class__.__name__}({", ".join(map(repr, self.maps))})' @classmethod def fromkeys(cls, iterable, *args): -- cgit v0.12