Muzaffer Cikay
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
4 deletions
-
fastapi/dependencies/utils.py
|
|
@ -302,10 +302,7 @@ def get_dependant( |
|
|
|
assert is_scalar_field( |
|
|
|
field=param_field |
|
|
|
), "Path params must be of one of the supported types" |
|
|
|
if isinstance(param.default, params.Path): |
|
|
|
ignore_default = False |
|
|
|
else: |
|
|
|
ignore_default = True |
|
|
|
ignore_default = not isinstance(param.default, params.Path) |
|
|
|
param_field = get_param_field( |
|
|
|
param=param, |
|
|
|
param_name=param_name, |
|
|
|