Style fixes

This commit is contained in:
Massimiliano Culpo
2022-08-02 08:33:21 +02:00
committed by Todd Gamblin
parent 0b832b2929
commit aeac72e1e3
3 changed files with 11 additions and 10 deletions

View File

@@ -486,7 +486,7 @@ class HashableMap(MutableMapping):
"""This is a hashable, comparable dictionary. Hash is performed on
a tuple of the values in the dictionary."""
__slots__ = 'dict',
__slots__ = ("dict",)
def __init__(self):
self.dict = {}