Skip to content

Commit 96c8270

Browse files
authored
Update models.py
1 parent 561bf62 commit 96c8270

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

cldk/models/java/models.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ class JCallSite(BaseModel):
102102
argument_types: List[str]
103103
return_type: str = ""
104104
callee_signature: str = ""
105-
is_static_call: bool
106-
is_private: bool
107-
is_public: bool
108-
is_protected: bool
109-
is_unspecified: bool
105+
is_static_call: bool | None = None
106+
is_private: bool | None = None
107+
is_public: bool | None = None
108+
is_protected: bool | None = None
109+
is_unspecified: bool | None = None
110110
is_constructor_call: bool
111111
start_line: int
112112
start_column: int

0 commit comments

Comments
 (0)