Skip to content

Commit ee5983f

Browse files
committed
Remove type hinting for compatibility
1 parent e97a39b commit ee5983f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

plexapi/gdm.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@
1111
"""
1212
import socket
1313
import struct
14-
from typing import Any, Dict, List # noqa: F401
1514

1615

1716
class GDM:
1817
"""Base class to discover GDM services."""
1918

2019
def __init__(self):
21-
self.entries = [] # type: List[Dict[str, Any]]
20+
self.entries = []
2221
self.last_scan = None
2322

2423
def scan(self, scan_for_clients=False):

0 commit comments

Comments
 (0)