Skip to content

Commit bd87a7f

Browse files
authored
Updates functools.py with consistent quotes (GH-18825)
I have noticed that `'` quotes are used everywhere except this particular case, which was introduced in #18726 So, this is a trivial fix to enforce better consistency.
1 parent 4e53abb commit bd87a7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/functools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce',
1414
'TopologicalSorter', 'CycleError',
1515
'partial', 'partialmethod', 'singledispatch', 'singledispatchmethod',
16-
"cached_property"]
16+
'cached_property']
1717

1818
from abc import get_cache_token
1919
from collections import namedtuple

0 commit comments

Comments
 (0)