Skip to content

Commit

Permalink
Update Lib/collections/__init__.py
Browse files Browse the repository at this point in the history
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
  • Loading branch information
rhettinger and serhiy-storchaka authored Apr 3, 2024
1 parent 7af30ea commit 9d54879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/collections/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ def __repr__(self):

@classmethod
def fromkeys(cls, iterable, value=None, /):
'Create a new ChainMap with keys from thhe iterable and values set to value.'
'Create a new ChainMap with keys from iterable and values set to value.'
return cls(dict.fromkeys(iterable, value))

def copy(self):
Expand Down

0 comments on commit 9d54879

Please sign in to comment.