Skip to content

Commit

Permalink
remove defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
ss2165 committed Jan 10, 2024
1 parent 33a7a50 commit c10daee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion guppy/hugr/tys.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class TypeParam(BaseModel):

class BoundedNatParam(BaseModel):
tp: Literal["BoundedNat"] = "BoundedNat"
bound: int | None = None
bound: int | None


class OpaqueParam(BaseModel):
Expand Down
2 changes: 1 addition & 1 deletion guppy/hugr/val.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class FunctionVal(BaseModel):
"""A higher-order function value."""

v: Literal["Function"] = "Function"
hugr: Any = None # TODO
hugr: Any # TODO


class Tuple(BaseModel):
Expand Down

0 comments on commit c10daee

Please sign in to comment.