Handvask / handvask

Doc line too long FLK-W505
Style
Minor
a year agoa year old
doc line too long (106 > 88 characters)
220
221class DBHandler(object):
222    """
223    A simple singleton class that makes sure that only one connection to the database is ever initialised.224    """
225
226    def __new__(cls):
doc line too long (94 > 88 characters)
 72        HTTPException: Incorrect username or password
 73
 74    Returns:
 75        dict: A dictionary telling if the login attempt was successful, as well as an included 76        access token and token_type
 77    """
 78    user = select(u for u in User if u.username == form_data.username)[:]