diff --git a/app/cinema/bar.py b/app/cinema/bar.py index fbafb9991..0e0aa630c 100644 --- a/app/cinema/bar.py +++ b/app/cinema/bar.py @@ -1,4 +1,4 @@ -from app.poeple.customer import Customer +from app.people.customer import Customer class CinemaBar: diff --git a/app/cinema/hall.py b/app/cinema/hall.py index c0dd1412a..dbb89feb9 100644 --- a/app/cinema/hall.py +++ b/app/cinema/hall.py @@ -1,5 +1,5 @@ -from app.poeple.customer import Customer -from app.poeple.cinema_staff import Cleaner +from app.people.customer import Customer +from app.people.cinema_staff import Cleaner from typing import List diff --git a/app/main.py b/app/main.py index 1b4dce560..b33984cd0 100644 --- a/app/main.py +++ b/app/main.py @@ -1,11 +1,11 @@ from app.cinema.bar import CinemaBar from app.cinema.hall import CinemaHall -from app.poeple.customer import Customer -from app.poeple.cinema_staff import Cleaner +from app.people.customer import Customer +from app.people.cinema_staff import Cleaner def cinema_visit( - customers: list, + customers: list[dict], hall_number: int, cleaner: str, movie: str diff --git a/app/poeple/__init__.py b/app/people/__init__.py similarity index 100% rename from app/poeple/__init__.py rename to app/people/__init__.py diff --git a/app/poeple/cinema_staff.py b/app/people/cinema_staff.py similarity index 100% rename from app/poeple/cinema_staff.py rename to app/people/cinema_staff.py diff --git a/app/poeple/customer.py b/app/people/customer.py similarity index 100% rename from app/poeple/customer.py rename to app/people/customer.py