Browse Source

🔥 Remove repeated param declaration (#123)

pull/128/head
yihuang 6 years ago
committed by Sebastián Ramírez
parent
commit
f806ba642a
  1. 1
      fastapi/dependencies/utils.py

1
fastapi/dependencies/utils.py

@ -100,7 +100,6 @@ def get_dependant(*, path: str, call: Callable, name: str = None) -> Dependant:
lenient_issubclass(param.annotation, param_supported_types)
or param.annotation == param.empty
), f"Path params must be of one of the supported types"
param = signature_params[param_name]
add_param_to_fields(
param=param,
dependant=dependant,

Loading…
Cancel
Save