Skip to content

Commit f2ef2db

Browse files
committed
Remove unnecessary import
1 parent 85fc6b9 commit f2ef2db

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/mock_vws/database.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import uuid
66
from dataclasses import dataclass, field
7-
from typing import Optional, Set
7+
from typing import Set
88

99
from .states import States
1010
from .target import Target
@@ -30,4 +30,3 @@ class VuforiaDatabase:
3030
client_secret_key: str = field(default_factory=_random_hex)
3131
targets: Set[Target] = field(default_factory=set, hash=False)
3232
state: States = States.WORKING
33-

0 commit comments

Comments
 (0)