Skip to content

Commit

Permalink
Moved import of Iterable into TYPE_CHECKING-Block
Browse files Browse the repository at this point in the history
  • Loading branch information
grayson-helmholz committed Oct 16, 2024
1 parent 8332f09 commit a1287e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/unit/test_solving.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from __future__ import annotations

from collections.abc import Iterable
from typing import TYPE_CHECKING

import attrs
Expand All @@ -27,6 +26,8 @@
from qrules.topology import MutableTransition

if TYPE_CHECKING:
from collections.abc import Iterable

from qrules.argument_handling import Rule


Expand Down

0 comments on commit a1287e8

Please sign in to comment.