Screw you codestyle

This commit is contained in:
2021-01-29 18:45:16 +00:00
parent cdc8635e2f
commit aa51ce7861
3 changed files with 4 additions and 2 deletions

View File

@@ -83,4 +83,4 @@ class animation_is_finished():
if finished:
import time
time.sleep(0.1)
return finished
return finished

View File

@@ -8,6 +8,7 @@ from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support import expected_conditions
from selenium.webdriver.support.select import Select
def parse_bool_from_string(string):
# Used to convert from attribute strings to boolean values, written after I found this:
# >>> bool("false")

View File

@@ -1,8 +1,9 @@
from django.conf import settings
import django
def pytest_configure():
settings.PASSWORD_HASHERS = (
'django.contrib.auth.hashers.MD5PasswordHasher',
'django.contrib.auth.hashers.MD5PasswordHasher',
)
django.setup()