kota matsuoka
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
fastapi/dependencies/utils.py
-
fastapi/routing.py
|
@ -294,7 +294,7 @@ def get_dependant( |
|
|
if param_name in path_param_names: |
|
|
if param_name in path_param_names: |
|
|
assert is_scalar_field( |
|
|
assert is_scalar_field( |
|
|
field=param_field |
|
|
field=param_field |
|
|
), f"Path params must be of one of the supported types" |
|
|
), "Path params must be of one of the supported types" |
|
|
if isinstance(param.default, params.Path): |
|
|
if isinstance(param.default, params.Path): |
|
|
ignore_default = False |
|
|
ignore_default = False |
|
|
else: |
|
|
else: |
|
|
|
@ -365,7 +365,7 @@ class APIRoute(routing.Route): |
|
|
self.include_in_schema = include_in_schema |
|
|
self.include_in_schema = include_in_schema |
|
|
self.response_class = response_class |
|
|
self.response_class = response_class |
|
|
|
|
|
|
|
|
assert callable(endpoint), f"An endpoint must be a callable" |
|
|
assert callable(endpoint), "An endpoint must be a callable" |
|
|
self.dependant = get_dependant(path=self.path_format, call=self.endpoint) |
|
|
self.dependant = get_dependant(path=self.path_format, call=self.endpoint) |
|
|
for depends in self.dependencies[::-1]: |
|
|
for depends in self.dependencies[::-1]: |
|
|
self.dependant.dependencies.insert( |
|
|
self.dependant.dependencies.insert( |
|
|