We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9401d98 commit 2a727ccCopy full SHA for 2a727cc
sc2reader/objects.py
@@ -48,7 +48,7 @@ def lineup(self):
48
return "".join(sorted(p.play_race[0].upper() for p in self.players))
49
50
@property
51
- def hash(self):
+ def hash(self): # noqa: F811
52
raw_hash = ",".join(sorted(p.url for p in self.players))
53
return hashlib.sha256(raw_hash).hexdigest()
54
0 commit comments