cleaned up imports

master
Arne Wischer 6 years ago
parent efdfda3df2
commit 2ee9555516
  1. 1
      days/test_day01.py
  2. 1
      days/test_day02.py
  3. 1
      days/test_day03.py
  4. 1
      days/test_day05.py
  5. 1
      days/test_day07.py
  6. 1
      days/test_day08.py
  7. 2
      days/test_day09.py
  8. 3
      days/test_day10.py

@ -1,6 +1,5 @@
import os
inputfile = os.path.join(os.path.dirname(__file__), "input/day01_input")

@ -2,7 +2,6 @@ import os
from . import OpcodeComputer
inputfile = os.path.join(os.path.dirname(__file__), "input/day02_input")

@ -1,7 +1,6 @@
import os
import sys
inputfile = os.path.join(os.path.dirname(__file__), "input/day03_input")

@ -2,7 +2,6 @@ import os
from . import OpcodeComputer
inputfile = os.path.join(os.path.dirname(__file__), "input/day05_input")

@ -3,7 +3,6 @@ import os
from . import OpcodeComputer
inputfile = os.path.join(os.path.dirname(__file__), "input/day07_input")

@ -1,7 +1,6 @@
import os
import sys
imgsize = 25 * 6

@ -1,9 +1,7 @@
import itertools
import os
from .comp import OpcodeComputer
inputfile = os.path.join(os.path.dirname(__file__), "input/day09_input")

@ -1,8 +1,7 @@
from math import atan2, sqrt
import os
from math import atan2
from typing import Tuple
inputfile = os.path.join(os.path.dirname(__file__), "input/day10_input")

Loading…
Cancel
Save