Skip to content

Commit cae2a9a

Browse files
committed
Update README
1 parent c664ae4 commit cae2a9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Type Hints allow for inline specification of the input type of a parameter. Some
108108
| `datetime.datetime` | Received as a `str` in ISO-8601 date-time format | Y | Y | Y | Y | N |
109109
| `datetime.date` | Received as a `str` in ISO-8601 full-date format | Y | Y | Y | Y | N |
110110
| `datetime.time` | Received as a `str` in ISO-8601 partial-time format | Y | Y | Y | Y | N |
111-
| `dict` | For `Query` and `Form` inputs, users should pass the stringified JSON | N | N | Y | N | N |
111+
| `dict` | For `Query` and `Form` inputs, users should pass the stringified JSON | N | Y | Y | Y | N |
112112
| `FileStorage` | | N | N | N | N | Y |
113113

114114
These can be used in tandem to describe a parameter to validate: `parameter_name: type_hint = ParameterSubclass()`
@@ -117,7 +117,7 @@ These can be used in tandem to describe a parameter to validate: `parameter_name
117117
- `ParameterSubclass`: An instance of a subclass of `Parameter`
118118

119119
### Validation with arguments to Parameter
120-
Validation beyond type-checking can be done by passing arguments into the constructor of the `Parameter` subclass (with the exception of `MultiSource`). The arguments available for use on each type hint are:
120+
Validation beyond type-checking can be done by passing arguments into the constructor of the `Parameter` subclass. The arguments available for use on each type hint are:
121121

122122
| Parameter Name | Type of Parameter | Effective On Types | Description |
123123
|-------------------|---------------------------------------------|-----------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|

0 commit comments

Comments
 (0)