Skip to content

Commit 845f4d9

Browse files
committed
Correct imports
1 parent 2fcbd5d commit 845f4d9

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
from .helpers import b64_decode_padded, _pad_base64
3030
from .exceptions import FmdApiException, AuthenticationError
31-
from .types import PhotoResult, Location
31+
from .models import PhotoResult, Location
3232

3333
# Constants copied from original module to ensure parity
3434
CONTEXT_STRING_LOGIN = "context:loginAuthentication"

device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from datetime import datetime, timezone
1010
from typing import Optional, AsyncIterator, List
1111

12-
from .types import Location, PhotoResult
12+
from .models import Location, PhotoResult
1313
from .exceptions import OperationError
1414
from .helpers import b64_decode_padded
1515
from .client import FmdClient

types.py renamed to models.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
"""Data types used by fmd_api v2."""
21
from dataclasses import dataclass
32
from datetime import datetime
43
from typing import Optional, Dict, Any

0 commit comments

Comments
 (0)