Răsfoiți Sursa

Remove unused imports

Taddeus Kroes 7 ani în urmă
părinte
comite
87feff56d1
3 a modificat fișierele cu 0 adăugiri și 3 ștergeri
  1. 0 1
      15_goblins.py
  2. 0 1
      16_opcodes.py
  3. 0 1
      18_lumber.py

+ 0 - 1
15_goblins.py

@@ -1,7 +1,6 @@
 #!/usr/bin/env python3
 import sys
 from operator import attrgetter
-from collections import defaultdict
 
 SPACE, WALL = 0, 1
 GOBLINS, ELVES = 0, 1

+ 0 - 1
16_opcodes.py

@@ -1,6 +1,5 @@
 #!/usr/bin/env python3
 import sys
-from collections import defaultdict
 
 isa = {
     'addr': lambda a, b, reg: reg[a] + reg[b],

+ 0 - 1
18_lumber.py

@@ -1,6 +1,5 @@
 #!/usr/bin/env python3
 import sys
-import time
 
 OPEN, TREE, LUMB = range(3)