Skip to content

Commit

Permalink
Updates functools.py with consistent quotes (GH-18825)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
sobolevn committed Mar 11, 2020
1 parent 4e53abb commit bd87a7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/functools.py
Expand Up @@ -13,7 +13,7 @@
'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce',
'TopologicalSorter', 'CycleError',
'partial', 'partialmethod', 'singledispatch', 'singledispatchmethod',
"cached_property"]
'cached_property']

from abc import get_cache_token
from collections import namedtuple
Expand Down

0 comments on commit bd87a7f

Please sign in to comment.