Skip to content

Commit 2a727cc

Browse files
committed
sc2reader/objects.py:51:9: F811
1 parent 9401d98 commit 2a727cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sc2reader/objects.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def lineup(self):
4848
return "".join(sorted(p.play_race[0].upper() for p in self.players))
4949

5050
@property
51-
def hash(self):
51+
def hash(self): # noqa: F811
5252
raw_hash = ",".join(sorted(p.url for p in self.players))
5353
return hashlib.sha256(raw_hash).hexdigest()
5454

0 commit comments

Comments
 (0)