Commit f38d7e4 1 parent 0cc005b commit f38d7e4 Copy full SHA for f38d7e4
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 28
28
entry : python3 scripts/make_pyi.py
29
29
30
30
- repo : https://github.com/RobertCraigie/pyright-python
31
- rev : v1.1.392
31
+ rev : v1.1.393
32
32
hooks :
33
33
- id : pyright
34
34
args : [reflex, tests]
Original file line number Diff line number Diff line change @@ -622,7 +622,7 @@ def figure_out_return_type(annotation: Any):
622
622
defaults = [],
623
623
)
624
624
625
- definition = ast .FunctionDef (
625
+ definition = ast .FunctionDef ( # pyright: ignore [reportCallIssue]
626
626
name = "create" ,
627
627
args = create_args ,
628
628
body = [ # pyright: ignore [reportArgumentType]
@@ -684,7 +684,7 @@ def _generate_staticmethod_call_functiondef(
684
684
else []
685
685
),
686
686
)
687
- definition = ast .FunctionDef (
687
+ definition = ast .FunctionDef ( # pyright: ignore [reportCallIssue]
688
688
name = "__call__" ,
689
689
args = call_args ,
690
690
body = [
You can’t perform that action at this time.
0 commit comments