All the methods init

This commit is contained in:
Profitroll 2022-10-05 13:08:27 +02:00
parent 8e9347f526
commit 08dafb6459
5 changed files with 27 additions and 2 deletions

View File

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

View File

@ -0,0 +1,5 @@
from pyrmv.errors.not_ready import NotReadyYetError
def board_arrival():
raise NotReadyYetError()

View File

@ -0,0 +1,5 @@
from pyrmv.errors.not_ready import NotReadyYetError
def board_departure():
raise NotReadyYetError()

View File

@ -0,0 +1,5 @@
from pyrmv.errors.not_ready import NotReadyYetError
def journey_detail():
raise NotReadyYetError()

View File

@ -0,0 +1,5 @@
from pyrmv.errors.not_ready import NotReadyYetError
def trip_recon():
raise NotReadyYetError()