Grid.save() should return self

This commit is contained in:
Jan Petykiewicz 2021-10-24 19:06:27 -07:00
parent b9f6507498
commit 22f218c054

View File

@ -314,15 +314,19 @@ class Grid:
g.__dict__.update(tmp_dict) g.__dict__.update(tmp_dict)
return g return g
def save(self, filename: str): def save(self: T, filename: str) -> T:
""" """
Save to file. Save to file.
Args: Args:
filename: Filename to save to. filename: Filename to save to.
Returns:
self
""" """
with open(filename, 'wb') as f: with open(filename, 'wb') as f:
pickle.dump(self.__dict__, f, protocol=2) pickle.dump(self.__dict__, f, protocol=2)
return self
def copy(self: T) -> T: def copy(self: T) -> T:
""" """