mirror of
https://github.com/Unidata/python-awips.git
synced 2025-02-23 22:57:56 -05:00
Fixing more relative imports
This commit is contained in:
parent
46bc7672ca
commit
40409c451c
4 changed files with 25 additions and 25 deletions
|
@ -41,20 +41,20 @@ __all__ = [
|
|||
'response'
|
||||
]
|
||||
|
||||
from ActiveTableKey import ActiveTableKey
|
||||
from ActiveTableRecord import ActiveTableRecord
|
||||
from ActiveTableMode import ActiveTableMode
|
||||
from DumpActiveTableRequest import DumpActiveTableRequest
|
||||
from DumpActiveTableResponse import DumpActiveTableResponse
|
||||
from GetActiveTableDictRequest import GetActiveTableDictRequest
|
||||
from GetActiveTableDictResponse import GetActiveTableDictResponse
|
||||
from GetFourCharSitesRequest import GetFourCharSitesRequest
|
||||
from GetFourCharSitesResponse import GetFourCharSitesResponse
|
||||
from GetVtecAttributeRequest import GetVtecAttributeRequest
|
||||
from GetVtecAttributeResponse import GetVtecAttributeResponse
|
||||
from OperationalActiveTableRecord import OperationalActiveTableRecord
|
||||
from PracticeActiveTableRecord import PracticeActiveTableRecord
|
||||
from SendPracticeProductRequest import SendPracticeProductRequest
|
||||
from VTECChange import VTECChange
|
||||
from VTECTableChangeNotification import VTECTableChangeNotification
|
||||
from .ActiveTableKey import ActiveTableKey
|
||||
from .ActiveTableRecord import ActiveTableRecord
|
||||
from .ActiveTableMode import ActiveTableMode
|
||||
from .DumpActiveTableRequest import DumpActiveTableRequest
|
||||
from .DumpActiveTableResponse import DumpActiveTableResponse
|
||||
from .GetActiveTableDictRequest import GetActiveTableDictRequest
|
||||
from .GetActiveTableDictResponse import GetActiveTableDictResponse
|
||||
from .GetFourCharSitesRequest import GetFourCharSitesRequest
|
||||
from .GetFourCharSitesResponse import GetFourCharSitesResponse
|
||||
from .GetVtecAttributeRequest import GetVtecAttributeRequest
|
||||
from .GetVtecAttributeResponse import GetVtecAttributeResponse
|
||||
from .OperationalActiveTableRecord import OperationalActiveTableRecord
|
||||
from .PracticeActiveTableRecord import PracticeActiveTableRecord
|
||||
from .SendPracticeProductRequest import SendPracticeProductRequest
|
||||
from .VTECChange import VTECChange
|
||||
from .VTECTableChangeNotification import VTECTableChangeNotification
|
||||
|
||||
|
|
|
@ -25,6 +25,6 @@ __all__ = [
|
|||
'MasterLevel'
|
||||
]
|
||||
|
||||
from Level import Level
|
||||
from MasterLevel import MasterLevel
|
||||
from .Level import Level
|
||||
from .MasterLevel import MasterLevel
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ __all__ = [
|
|||
'Geometry'
|
||||
]
|
||||
|
||||
from Coordinate import Coordinate
|
||||
from Envelope import Envelope
|
||||
from Geometry import Geometry
|
||||
from .Coordinate import Coordinate
|
||||
from .Envelope import Envelope
|
||||
from .Geometry import Geometry
|
||||
|
||||
|
|
|
@ -27,8 +27,8 @@ __all__ = [
|
|||
'GregorianCalendar'
|
||||
]
|
||||
|
||||
from Calendar import Calendar
|
||||
from Date import Date
|
||||
from EnumSet import EnumSet
|
||||
from GregorianCalendar import GregorianCalendar
|
||||
from .Calendar import Calendar
|
||||
from .Date import Date
|
||||
from .EnumSet import EnumSet
|
||||
from .GregorianCalendar import GregorianCalendar
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue