Skip to content

Commit a3a06e7

Browse files
committed
Fix unused imports.
1 parent bc04d7d commit a3a06e7

File tree

11 files changed

+5
-12
lines changed

11 files changed

+5
-12
lines changed

python/selfie-lib/selfie_lib/ArrayMap.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from collections.abc import Set, Iterator, Mapping, ItemsView
2-
import re
32
from typing import List, Tuple, TypeVar, Union, Any
43
from abc import abstractmethod, ABC
54

python/selfie-lib/selfie_lib/Atomic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Callable, Optional
1+
from typing import Callable
22

33

44
class AtomicReference[T]:

python/selfie-lib/selfie_lib/CommentTracker.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
from typing import Dict, Iterable, Tuple, Sequence, TypeVar, Callable
2-
from abc import ABC, abstractmethod
1+
from typing import Dict, Iterable, Tuple
32
from enum import Enum, auto
43
import threading
54

python/selfie-lib/selfie_lib/FS.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
from abc import ABC, abstractmethod
55
from typing import Callable, Iterator
6-
from itertools import chain
76

87

98
class FS(ABC):

python/selfie-lib/selfie_lib/Literals.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from calendar import c
21
from enum import Enum, auto
32
from typing import Any, Protocol, TypeVar
43
from abc import abstractmethod

python/selfie-lib/selfie_lib/Snapshot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from typing import Union, Iterable, Dict
2-
from .SnapshotValue import SnapshotValue, SnapshotValueBinary, SnapshotValueString
2+
from .SnapshotValue import SnapshotValue
33
from .ArrayMap import ArrayMap
44

55

python/selfie-lib/selfie_lib/SnapshotSystem.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from abc import ABC, abstractmethod
22
from enum import Enum, auto
3-
import glob
43
from typing import ByteString, Optional
54

65
from .FS import FS

python/selfie-lib/selfie_lib/SnapshotValue.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from abc import ABC, abstractmethod
2-
from typing import Union, Type
2+
from typing import Union
33

44

55
def unix_newlines(string: str) -> str:

python/selfie-lib/selfie_lib/SourceFile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import re
21
from .Slice import Slice
32
from .Literals import Language, LiteralFormat, LiteralValue
43
from .EscapeLeadingWhitespace import EscapeLeadingWhitespace

python/selfie-lib/selfie_lib/WithinTestGC.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from re import S, T
21
from typing import Iterable, Tuple, List
32
from threading import Lock
43

0 commit comments

Comments
 (0)