diff --git a/09_python_crash_course/python_crash_course_book_code_with_typing/chapter_05/banned_users.py b/09_python_crash_course/python_crash_course_book_code_with_typing/chapter_05/banned_users.py index f0f1225..966bb4a 100644 --- a/09_python_crash_course/python_crash_course_book_code_with_typing/chapter_05/banned_users.py +++ b/09_python_crash_course/python_crash_course_book_code_with_typing/chapter_05/banned_users.py @@ -1,4 +1,4 @@ -banned_users:list[SyntaxWarning] = ['andrew', 'carolina', 'david'] +banned_users:list[str] = ['andrew', 'carolina', 'david'] user:str = 'marie' if user not in banned_users: