Marcelo Trylesinski
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
fastapi/datastructures.py
|
|
@ -21,7 +21,7 @@ class DefaultPlaceholder: |
|
|
|
You shouldn't use this class directly. |
|
|
|
|
|
|
|
It's used internally to recognize when a default value has been overwritten, even |
|
|
|
if the overriden default value was truthy. |
|
|
|
if the overridden default value was truthy. |
|
|
|
""" |
|
|
|
|
|
|
|
def __init__(self, value: Any): |
|
|
@ -42,6 +42,6 @@ def Default(value: DefaultType) -> DefaultType: |
|
|
|
You shouldn't use this function directly. |
|
|
|
|
|
|
|
It's used internally to recognize when a default value has been overwritten, even |
|
|
|
if the overriden default value was truthy. |
|
|
|
if the overridden default value was truthy. |
|
|
|
""" |
|
|
|
return DefaultPlaceholder(value) # type: ignore |
|
|
|