1
0

location.py 278 B

123456789101112
  1. from .typing import *
  2. class HGSLocation:
  3. def __init__(self, location: location_t):
  4. self._loc: location_t = location_t(location)
  5. def get_location(self) -> location_t:
  6. return self._loc
  7. hgs_location_t = "hgs_location_t", Union[HGSLocation, location_t]