uselotus / lotus

File .deepsource.toml not found in the default branch of the repository root. Please refer to the docs.

Useless inheritance from object PYL-R0205
Anti-pattern
Major
a year agoa year old
Class 'UserService' inherits from object, can be safely removed from bases in python3
 8DEFAULT_FROM_EMAIL = settings.DEFAULT_FROM_EMAIL
 9
10
11class UserService(object):12    def __init__(self, User):
13        self.User = User
14