diff --git a/main.py b/main.py index d0af72b..17d022a 100644 --- a/main.py +++ b/main.py @@ -138,6 +138,7 @@ def end_test(password: str): return("Неверный пароль") app.mount("/", StaticFiles(directory="gui", html = True), name="gui") # must be after method since it uses them +app.mount("/pictures", StaticFiles(directory="pictures"), name="pictures") # must be after method since it uses them \ No newline at end of file diff --git a/settings.py b/settings.py index 70b9807..5c501e1 100644 --- a/settings.py +++ b/settings.py @@ -1,3 +1,3 @@ WAVE = 1 END_TEST_PASSWORD = "qwe" -QUIZ_LENGTH = 3 \ No newline at end of file +QUIZ_LENGTH = 4 \ No newline at end of file