Add import to __init__.py

This commit is contained in:
Kumi 2022-09-15 17:03:31 +00:00
parent ffac3c9d75
commit cce889d43b
Signed by: kumi
GPG key ID: ECBCC9082395383F
3 changed files with 11 additions and 2 deletions

View file

@ -0,0 +1 @@
from .classes import CruiseMapper

View file

@ -1 +1,7 @@
from .api import CruiseMapper
from .api import CruiseMapper
from .cruise import Cruise
from .flag import Flag
from .http import HTTPRequest
from .location import Location
from .ship import Ship
from .shipline import ShipLine

View file

@ -1,4 +1,6 @@
from typing import Optional
from typing import Optional, List, Tuple
from datetime import datetime
class Cruise: