File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ def part1(data: ListsOfBatteryLists) -> int:
4141 # Gotta sliiiide through that list like you're sliding into some DMs ;)
4242 for i in range (len (x ) - 1 ):
4343 first_battery : int = x [i ]
44- the_rest : list [int ] = x [i + 1 :] # the rest of battery gang, yadayada
44+ the_rest : list [int ] = x [i + 1 :] # the rest of batterygang, yadayada
4545
4646 biggest_of_the_rest : int = max (the_rest ) # Bigger IS better.
4747
Original file line number Diff line number Diff line change @@ -16,13 +16,14 @@ target-version = "py314"
1616
1717[tool .ruff .lint ]
1818select = [" E" , " F" , " W" ]
19- ignore = [" E501" ]
19+ ignore = [" E501" , " E203 " , " E211 " ]
2020
2121[tool .mypy ]
2222python_version = " 3.14"
2323ignore_missing_imports = true
2424pretty = true
2525
26+
2627disallow_untyped_defs = false
2728disallow_incomplete_defs = true
2829warn_unused_ignores = true
You can’t perform that action at this time.
0 commit comments