Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
honelyq committed Oct 9, 2024
1 parent f35d4fe commit 2a83564
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/cinema/bar.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from app.poeple.customer import Customer
from app.people.customer import Customer


class CinemaBar:
Expand Down
4 changes: 2 additions & 2 deletions app/cinema/hall.py
Original file line number Diff line number Diff line change
@@ -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


Expand Down
6 changes: 3 additions & 3 deletions app/main.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 2a83564

Please sign in to comment.