Skip to content

Commit 0d436df

Browse files
Remove breaking type annotations.
1 parent af2800d commit 0d436df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

adafruit_azureiot/iothub_device.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def __init__(
149149
self._token_expires = token_expires
150150
self._logger = logger if logger is not None else logging.getLogger("log")
151151

152-
connection_string_values: dict = {}
152+
connection_string_values = {}
153153

154154
try:
155155
cs_args = device_connection_string.split(DELIMITER)

adafruit_azureiot/quote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
b"ABCDEFGHIJKLMNOPQRSTUVWXYZ" b"abcdefghijklmnopqrstuvwxyz" b"0123456789" b"_.-~"
2424
)
2525
_ALWAYS_SAFE_BYTES = bytes(_ALWAYS_SAFE)
26-
SAFE_QUOTERS: dict = {}
26+
SAFE_QUOTERS = {}
2727

2828

2929
def quote(bytes_val: bytes, safe: Union[str, bytes, bytearray] = "/") -> str:

0 commit comments

Comments
 (0)