All the methods init
This commit is contained in:
parent
8e9347f526
commit
08dafb6459
@ -1,3 +1,8 @@
|
||||
from .trip_find import trip_find
|
||||
from .board_arrival import board_arrival
|
||||
from .board_departure import board_departure
|
||||
from .him_search import him_search
|
||||
from .journey_detail import journey_detail
|
||||
from .stop_by_coords import stop_by_coords
|
||||
from .stop_by_name import stop_by_name
|
||||
from .stop_by_name import stop_by_name
|
||||
from .trip_find import trip_find
|
||||
from .trip_recon import trip_recon
|
@ -0,0 +1,5 @@
|
||||
from pyrmv.errors.not_ready import NotReadyYetError
|
||||
|
||||
|
||||
def board_arrival():
|
||||
raise NotReadyYetError()
|
@ -0,0 +1,5 @@
|
||||
from pyrmv.errors.not_ready import NotReadyYetError
|
||||
|
||||
|
||||
def board_departure():
|
||||
raise NotReadyYetError()
|
@ -0,0 +1,5 @@
|
||||
from pyrmv.errors.not_ready import NotReadyYetError
|
||||
|
||||
|
||||
def journey_detail():
|
||||
raise NotReadyYetError()
|
@ -0,0 +1,5 @@
|
||||
from pyrmv.errors.not_ready import NotReadyYetError
|
||||
|
||||
|
||||
def trip_recon():
|
||||
raise NotReadyYetError()
|
Loading…
Reference in New Issue
Block a user