mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-19 15:34:20 -05:00
Compare commits
1 Commits
always-run
...
fix-max_di
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c5e31ae863 |
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@@ -45,7 +45,7 @@ jobs:
|
||||
test:
|
||||
needs:
|
||||
- changes
|
||||
if: needs.changes.outputs.src == 'true' || github.ref == 'refs/heads/master'
|
||||
if: needs.changes.outputs.src == 'true'
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ windows-latest, macos-latest ]
|
||||
|
||||
@@ -211,7 +211,7 @@ def Path( # noqa: N802
|
||||
int | None,
|
||||
Doc(
|
||||
"""
|
||||
Maximum number of allow digits for strings.
|
||||
Maximum number of digits allowed for decimal values.
|
||||
"""
|
||||
),
|
||||
] = _Unset,
|
||||
@@ -219,7 +219,7 @@ def Path( # noqa: N802
|
||||
int | None,
|
||||
Doc(
|
||||
"""
|
||||
Maximum number of decimal places allowed for numbers.
|
||||
Maximum number of decimal places allowed for decimal values.
|
||||
"""
|
||||
),
|
||||
] = _Unset,
|
||||
@@ -570,7 +570,7 @@ def Query( # noqa: N802
|
||||
int | None,
|
||||
Doc(
|
||||
"""
|
||||
Maximum number of allow digits for strings.
|
||||
Maximum number of digits allowed for decimal values.
|
||||
"""
|
||||
),
|
||||
] = _Unset,
|
||||
@@ -578,7 +578,7 @@ def Query( # noqa: N802
|
||||
int | None,
|
||||
Doc(
|
||||
"""
|
||||
Maximum number of decimal places allowed for numbers.
|
||||
Maximum number of decimal places allowed for decimal values.
|
||||
"""
|
||||
),
|
||||
] = _Unset,
|
||||
@@ -892,7 +892,7 @@ def Header( # noqa: N802
|
||||
int | None,
|
||||
Doc(
|
||||
"""
|
||||
Maximum number of allow digits for strings.
|
||||
Maximum number of digits allowed for decimal values.
|
||||
"""
|
||||
),
|
||||
] = _Unset,
|
||||
@@ -900,7 +900,7 @@ def Header( # noqa: N802
|
||||
int | None,
|
||||
Doc(
|
||||
"""
|
||||
Maximum number of decimal places allowed for numbers.
|
||||
Maximum number of decimal places allowed for decimal values.
|
||||
"""
|
||||
),
|
||||
] = _Unset,
|
||||
@@ -1198,7 +1198,7 @@ def Cookie( # noqa: N802
|
||||
int | None,
|
||||
Doc(
|
||||
"""
|
||||
Maximum number of allow digits for strings.
|
||||
Maximum number of digits allowed for decimal values.
|
||||
"""
|
||||
),
|
||||
] = _Unset,
|
||||
@@ -1206,7 +1206,7 @@ def Cookie( # noqa: N802
|
||||
int | None,
|
||||
Doc(
|
||||
"""
|
||||
Maximum number of decimal places allowed for numbers.
|
||||
Maximum number of decimal places allowed for decimal values.
|
||||
"""
|
||||
),
|
||||
] = _Unset,
|
||||
@@ -1526,7 +1526,7 @@ def Body( # noqa: N802
|
||||
int | None,
|
||||
Doc(
|
||||
"""
|
||||
Maximum number of allow digits for strings.
|
||||
Maximum number of digits allowed for decimal values.
|
||||
"""
|
||||
),
|
||||
] = _Unset,
|
||||
@@ -1534,7 +1534,7 @@ def Body( # noqa: N802
|
||||
int | None,
|
||||
Doc(
|
||||
"""
|
||||
Maximum number of decimal places allowed for numbers.
|
||||
Maximum number of decimal places allowed for decimal values.
|
||||
"""
|
||||
),
|
||||
] = _Unset,
|
||||
@@ -1842,7 +1842,7 @@ def Form( # noqa: N802
|
||||
int | None,
|
||||
Doc(
|
||||
"""
|
||||
Maximum number of allow digits for strings.
|
||||
Maximum number of digits allowed for decimal values.
|
||||
"""
|
||||
),
|
||||
] = _Unset,
|
||||
@@ -1850,7 +1850,7 @@ def Form( # noqa: N802
|
||||
int | None,
|
||||
Doc(
|
||||
"""
|
||||
Maximum number of decimal places allowed for numbers.
|
||||
Maximum number of decimal places allowed for decimal values.
|
||||
"""
|
||||
),
|
||||
] = _Unset,
|
||||
@@ -2157,7 +2157,7 @@ def File( # noqa: N802
|
||||
int | None,
|
||||
Doc(
|
||||
"""
|
||||
Maximum number of allow digits for strings.
|
||||
Maximum number of digits allowed for decimal values.
|
||||
"""
|
||||
),
|
||||
] = _Unset,
|
||||
@@ -2165,7 +2165,7 @@ def File( # noqa: N802
|
||||
int | None,
|
||||
Doc(
|
||||
"""
|
||||
Maximum number of decimal places allowed for numbers.
|
||||
Maximum number of decimal places allowed for decimal values.
|
||||
"""
|
||||
),
|
||||
] = _Unset,
|
||||
|
||||
Reference in New Issue
Block a user