Skip to content

Commit

Permalink
fixed invalid comment in list recomposer
Browse files Browse the repository at this point in the history
Change-Id: Iff4f2bb4d77ac9ea861f050990680572e25c2a07
  • Loading branch information
schnetzzz committed Sep 17, 2024
1 parent 771157c commit e6623df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmk/gui/form_specs/vue/visitors/recomposers/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
def recompose(form_spec: FormSpec[Any]) -> ListExtended[Any]:
if not isinstance(form_spec, List):
raise MKGeneralException(
f"Cannot decompose form spec. Expected a Percentage form spec, got {type(form_spec)}"
f"Cannot decompose form spec. Expected a String form spec, got {type(form_spec)}"
)

return ListExtended(
Expand Down

0 comments on commit e6623df

Please sign in to comment.