Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ scratch*

# log file
*.json

# Lock file
*.lock
!devcontainer.json


# Python compiled files and env
Expand Down
4 changes: 1 addition & 3 deletions cldk/models/python/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ class PyMethod(BaseModel):
class_signature: str
start_line: int
end_line: int
# incoming_calls: Optional[List["PyMethod"]] = None
# outgoing_calls: Optional[List["PyMethod"]] = None


class PyClass(BaseModel):
Expand All @@ -54,7 +52,7 @@ class PyModule(BaseModel):
functions: List[PyMethod]
classes: List[PyClass]
imports: List[PyImport]
#expressions: str
# expressions: str


class PyBuildAttributes(BaseModel):
Expand Down
Loading