Skip to content

Commit e3957b4

Browse files
committed
ruff
1 parent c4b0fb0 commit e3957b4

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

src/advent_of_code/year_2023/day_01.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from advent_of_code.utils.input_handling import (
22
read_input,
3-
parse_args,
43
)
54

65
import re

src/advent_of_code/year_2023/day_02.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from advent_of_code.utils.input_handling import read_input, parse_args
1+
from advent_of_code.utils.input_handling import read_input
22

33
import re
44

src/advent_of_code/year_2023/day_03.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from advent_of_code.utils.input_handling import read_input, parse_args
1+
from advent_of_code.utils.input_handling import read_input
22

33
import re
44

src/advent_of_code/year_2023/day_04.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from advent_of_code.utils.input_handling import read_input, parse_args
1+
from advent_of_code.utils.input_handling import read_input
22

33
import re
44

src/advent_of_code/year_2023/day_06.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from advent_of_code.utils.input_handling import read_input, parse_args
1+
from advent_of_code.utils.input_handling import read_input
22

33
import math
44
import re

0 commit comments

Comments
 (0)