Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
proy30 committed Feb 8, 2025
1 parent 85a6a74 commit 287d149
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/python/impactx/dashboard/Input/shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,13 @@


class SharedUtilities:

@staticmethod
@state.change(*INPUT_DEFAULTS)
def on_input_state_change(**_):
state_changes = state.modified_keys & set(INPUT_DEFAULTS)
for state_name in state_changes:
if type(state[state_name]) is str:
print(
f"{state_name} = {state[state_name]} and type: {type(state[state_name])}"
)
value = getattr(state, state_name)
desired_type = DashboardDefaults.TYPES.get(state_name, None)
validation_name = f"{state_name}_error_message"
Expand Down

0 comments on commit 287d149

Please sign in to comment.