Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 19, 2022
1 parent c5374bc commit 64df828
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 0 additions & 2 deletions src/aoc_cj/aoc2022/day16.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
import re
from collections import deque

import more_itertools as mi

Valves = dict[str, tuple[int, set[str]]]

MAX_TIME = 30
Expand Down
8 changes: 2 additions & 6 deletions src/aoc_cj/aoc2022/day19.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
import dataclasses
import enum
import functools
import itertools
import re
from collections import Counter, defaultdict, deque
from dataclasses import dataclass
from pprint import pp
from time import sleep, time
from typing import Generator, Iterable
from collections import Counter
from collections.abc import Generator, Iterable

import more_itertools as mi

Expand Down

0 comments on commit 64df828

Please sign in to comment.