Skip to content

Commit e551a6d

Browse files
committed
import optimizations
1 parent f5dc5eb commit e551a6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

airflow/providers/pysparkonk8s/resources/cpu.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from typing import TypeVar, Type, Sequence, Any
21
import re
2+
from typing import TypeVar, Type
33

44
# Create a generic variable that can be of type "CPU", or any subclass.
55
C = TypeVar("C", bound="CPU")

airflow/providers/pysparkonk8s/resources/memory.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import re
22
from abc import ABCMeta
33
from enum import IntEnum, EnumMeta
4-
from typing import TypeVar, Type, Sequence
4+
from typing import TypeVar, Type
55

66
# Create a generic variable that can be of type "Memory", or any subclass.
77
M = TypeVar("M", bound="Memory")

0 commit comments

Comments
 (0)