Skip to content

Commit

Permalink
Black cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphaelLilt committed Oct 25, 2024
1 parent 149c55a commit e505f78
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sisyphus/job_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,12 +250,11 @@ def __deepcopy__(self, memo):
result = cls.__new__(cls)
memo[id(self)] = result
for k, v in self.__dict__.items():
if k != 'users':
if k != "users":
setattr(result, k, copy.deepcopy(v, memo))
result.users = set()
return result


def __getstate__(self):
"""Skips exporting users
:return:
Expand Down

0 comments on commit e505f78

Please sign in to comment.