Skip to content

Commit f8c1cb9

Browse files
committed
refactor: follow lint rules
1 parent c99072c commit f8c1cb9

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

Diff for: aspis/common/apply_spec.py

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
from typing import Any
33

44
import aspis.internal as Ai
5-
65
from .curry import curry
76

87

Diff for: aspis/common/assoc.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
from collections.abc import Mapping
12
from copy import deepcopy
2-
from typing import TypeVar, Mapping
3+
from typing import TypeVar
34

45
from .curry import curry
56

Diff for: aspis/common/prop.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from collections.abc import Mapping
2-
32
from typing import TypeVar
43

54
from .curry import curry

Diff for: aspis/common/prop_eq.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from typing import Mapping, TypeVar
22

3-
from .prop import prop
43
from .curry import curry
4+
from .prop import prop
55

66
T = TypeVar("T")
77
R = TypeVar("R")

0 commit comments

Comments
 (0)