Skip to content

Commit 8126bc1

Browse files
committed
Apply black
1 parent 90cc500 commit 8126bc1

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

mypy/cache.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,15 @@ def write_str_opt_list(data: WriteBuffer, value: list[str | None]) -> None:
392392

393393

394394
JsonValue: _TypeAlias = None | int | str | bool | list["JsonValue"] | dict[str, "JsonValue"]
395-
JsonValueEx: _TypeAlias = None | int | str | bool | list["JsonValueEx"] | dict[str, "JsonValueEx"] | tuple["JsonValueEx", ...]
395+
JsonValueEx: _TypeAlias = (
396+
None
397+
| int
398+
| str
399+
| bool
400+
| list["JsonValueEx"]
401+
| dict[str, "JsonValueEx"]
402+
| tuple["JsonValueEx", ...]
403+
)
396404

397405

398406
def read_json_value(data: ReadBuffer) -> JsonValue:

0 commit comments

Comments
 (0)