Skip to content

Commit

Permalink
Fix type hint in continuous numerical parameter classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Waschenbacher committed Jan 9, 2025
1 parent 5f80310 commit ee54c89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions baybe/parameters/numerical.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def is_in_range(self, item: float) -> bool:

@override
@property
def comp_rep_columns(self) -> tuple[str, ...]:
def comp_rep_columns(self) -> tuple[str]:
return (self.name,)

@override
Expand Down Expand Up @@ -171,7 +171,7 @@ def is_in_range(self, item: float) -> bool:

@override
@property
def comp_rep_columns(self) -> tuple[str, ...]:
def comp_rep_columns(self) -> tuple[str]:
return (self.name,)

@override
Expand Down

0 comments on commit ee54c89

Please sign in to comment.