mirror of https://github.com/tiangolo/fastapi.git
🔥 Remove unused dunder method
This commit is contained in:
parent
3e40085bea
commit
97c9c753ad
|
|
@ -69,9 +69,6 @@ class ClassDep:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.value = True
|
self.value = True
|
||||||
|
|
||||||
def __bool__(self):
|
|
||||||
return True
|
|
||||||
|
|
||||||
|
|
||||||
wrapped_class_dep = noop_wrap(ClassDep)
|
wrapped_class_dep = noop_wrap(ClassDep)
|
||||||
wrapped_class_dep_async_wrapper = noop_wrap_async(ClassDep)
|
wrapped_class_dep_async_wrapper = noop_wrap_async(ClassDep)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue