Skip to content

Commit 36a6c6f

Browse files
committed
Removes some misleading comments from the PlayerDict class
1 parent 6fd7d0a commit 36a6c6f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

sc2reader/utils.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ def __getitem__(self,key):
2020
return super(PlayerDict,self).__getitem__(key)
2121

2222
def __setitem__(self,key,value):
23-
#if not isinstance(value,Player):
24-
# raise TypeError("Values must be of the Player class")
25-
2623
if isinstance(key,str):
2724
self._key_map[key] = value.pid
2825
key = value.pid

0 commit comments

Comments
 (0)