mute mypy type issue
This commit is contained in:
parent
73212071c1
commit
7ef6d96078
@ -146,7 +146,11 @@ def clean(s):
|
||||
return str(s)
|
||||
|
||||
|
||||
class Profile(get_profile_class("default")):
|
||||
# mute the mypy type issue with this dynamic base class function for now (: Any)
|
||||
ProfileBaseClass: Any = get_profile_class("default")
|
||||
|
||||
|
||||
class Profile(ProfileBaseClass):
|
||||
"""Profile class for user usage.
|
||||
|
||||
For users, who want to provide their own profile.
|
||||
|
Loading…
x
Reference in New Issue
Block a user