diff --git a/pyrmv/classes/Journey.py b/pyrmv/classes/Journey.py index 7efb2de..bb9dc12 100644 --- a/pyrmv/classes/Journey.py +++ b/pyrmv/classes/Journey.py @@ -2,6 +2,8 @@ from pyrmv.classes.Stop import Stop from pyrmv.classes.Message import Message class Journey(): + """Journey object.""" + def __init__(self, data: dict): self.stops = [] self.direction = data["Directions"]["Direction"][0]["value"]