Skip to content

Commit

Permalink
Solved flake8 E126 and E501 problems
Browse files Browse the repository at this point in the history
  • Loading branch information
Atikiho committed Sep 25, 2024
1 parent af16f7f commit 3d35e14
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@


def cinema_visit(
customers: list,
hall_number: int,
cleaner: str,
movie: str
customers: list,
hall_number: int,
cleaner: str,
movie: str
) -> None:
all_customers = [Customer(someone["name"], someone["food"])
for someone in customers]
for someone in all_customers:
CinemaBar().sell_product(someone, someone.food)
CinemaHall(hall_number).movie_session(movie, all_customers, Cleaner(cleaner))
(CinemaHall(hall_number).
movie_session(movie, all_customers, Cleaner(cleaner)))

0 comments on commit 3d35e14

Please sign in to comment.