File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ def _prepare_request(
173
173
upload_files : bool = False ,
174
174
) -> Dict [str , Any ]:
175
175
176
- payload : Dict | List
176
+ payload : Union [ Dict , List ]
177
177
if isinstance (request , GraphQLRequest ):
178
178
payload = request .payload
179
179
else :
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ def _prepare_request(
66
66
upload_files : bool = False ,
67
67
) -> Dict [str , Any ]:
68
68
69
- payload : Dict | List
69
+ payload : Union [ Dict , List ]
70
70
if isinstance (request , GraphQLRequest ):
71
71
payload = request .payload
72
72
else :
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ def _prepare_request(
147
147
upload_files : bool = False ,
148
148
) -> Dict [str , Any ]:
149
149
150
- payload : Dict | List
150
+ payload : Union [ Dict , List ]
151
151
if isinstance (request , GraphQLRequest ):
152
152
payload = request .payload
153
153
else :
Original file line number Diff line number Diff line change 32
32
"sphinx>=7.0.0,<8;python_version<='3.9'" ,
33
33
"sphinx>=8.1.0,<9;python_version>'3.9'" ,
34
34
"sphinx_rtd_theme>=3.0.2,<4" ,
35
- "sphinx-argparse==0.5.2" ,
35
+ "sphinx-argparse==0.5.2; python_version>='3.10'" ,
36
+ "sphinx-argparse==0.4.0; python_version<'3.10'" ,
36
37
"types-aiofiles" ,
37
38
"types-requests" ,
38
39
] + tests_requires
You can’t perform that action at this time.
0 commit comments