瀏覽代碼

Remove unused imports

Taddeus Kroes 7 年之前
父節點
當前提交
87feff56d1
共有 3 個文件被更改,包括 0 次插入3 次删除
  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)