Remove type hinting for compatibility

This commit is contained in:
Jason Lawrence 2020-04-01 21:11:21 -05:00
parent e97a39b427
commit ee5983f966

View file

@ -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):