Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
nickzoic committed Aug 26, 2024
1 parent 69b9cc2 commit 532f7cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions countess/core/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ def get_column(self, df):


class ColumnOrStringParam(ColumnChoiceParam):
DEFAULT_VALUE : Any = ""
DEFAULT_VALUE: Any = ""
PREFIX = "— "

def set_column_choices(self, choices):
Expand Down Expand Up @@ -493,7 +493,7 @@ def set_choices(self, choices: Iterable[str]):


class ColumnOrIntegerParam(ColumnOrStringParam):
DEFAULT_VALUE : int = 0
DEFAULT_VALUE: int = 0

def __init__(
self,
Expand Down

0 comments on commit 532f7cd

Please sign in to comment.