mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 06:04:15 +00:00
Remove type hinting for compatibility
This commit is contained in:
parent
e97a39b427
commit
ee5983f966
1 changed files with 1 additions and 2 deletions
|
@ -11,14 +11,13 @@ Inspired by
|
|||
"""
|
||||
import socket
|
||||
import struct
|
||||
from typing import Any, Dict, List # noqa: F401
|
||||
|
||||
|
||||
class GDM:
|
||||
"""Base class to discover GDM services."""
|
||||
|
||||
def __init__(self):
|
||||
self.entries = [] # type: List[Dict[str, Any]]
|
||||
self.entries = []
|
||||
self.last_scan = None
|
||||
|
||||
def scan(self, scan_for_clients=False):
|
||||
|
|
Loading…
Reference in a new issue