Skip to content
Open
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
10 changes: 5 additions & 5 deletions construct_editor/core/entries.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,15 +515,15 @@ def on_collapse_children_clicked():
# EntryArray ##########################################################################################################
class EntryArray(EntrySubconstruct):
construct: t.Union[
"cs.Array[Any, Any, Any, Any]", "cs.GreedyRange[Any, Any, Any, Any]"
"cs.Array[Any, Any]", "cs.GreedyRange[Any, Any]"
]

def __init__(
self,
model: "model.ConstructEditorModel",
parent: Optional["EntryConstruct"],
construct: t.Union[
"cs.Array[Any, Any, Any, Any]", "cs.GreedyRange[Any, Any, Any, Any]"
"cs.Array[Any, Any]", "cs.GreedyRange[Any, Any]"
],
name: t.Optional[NameType],
docs: str,
Expand Down Expand Up @@ -1146,7 +1146,7 @@ def __init__(
self,
model: "model.ConstructEditorModel",
parent: Optional["EntryConstruct"],
construct: "cs.Const[Any, Any, Any, Any]",
construct: "cs.Const[Any, Any]",
name: t.Optional[NameType],
docs: str,
):
Expand All @@ -1163,7 +1163,7 @@ def __init__(
self,
model: "model.ConstructEditorModel",
parent: Optional["EntryConstruct"],
construct: "cs.Computed[Any, Any]",
construct: "cs.Computed[Any]",
name: t.Optional[NameType],
docs: str,
):
Expand Down Expand Up @@ -1519,7 +1519,7 @@ def __init__(
self,
model: "model.ConstructEditorModel",
parent: Optional["EntryConstruct"],
construct: "cs.RawCopy[Any, Any, Any, Any]",
construct: "cs.RawCopy[Any, Any]",
name: t.Optional[NameType],
docs: str,
):
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ exclude = [
[tool.ty.rules]
invalid-assignment = "ignore"
invalid-method-override = "ignore"
invalid-type-arguments = "ignore"
unresolved-attribute = "ignore"
unused-type-ignore-comment = "ignore"

Expand Down