diff --git a/pyrmv/classes/Gis.py b/pyrmv/classes/Gis.py index bb3873b..9a1a558 100644 --- a/pyrmv/classes/Gis.py +++ b/pyrmv/classes/Gis.py @@ -1,6 +1,7 @@ from isodate import parse_duration class Gis(): + def __init__(self, ref: str, route: dict): self.ref = ref self.dist = route["dist"] diff --git a/pyrmv/classes/Product.py b/pyrmv/classes/Product.py index 20a631e..b19b967 100644 --- a/pyrmv/classes/Product.py +++ b/pyrmv/classes/Product.py @@ -1,3 +1,4 @@ class Product(): + def __init__(self): pass \ No newline at end of file diff --git a/pyrmv/classes/Ticket.py b/pyrmv/classes/Ticket.py new file mode 100644 index 0000000..3511fc4 --- /dev/null +++ b/pyrmv/classes/Ticket.py @@ -0,0 +1,4 @@ +class Ticket(): + + def __init__(self) -> None: + pass \ No newline at end of file