Skip to content

Commit

Permalink
fix: formatter func
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Aug 24, 2024
1 parent 13a976c commit 073cd44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dooit/ui/widgets/inputs/simple_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ def render(self) -> str:
return raw

for formatter in self.formatters:
raw = formatter(raw)
raw = formatter(raw, self.model)

return raw

0 comments on commit 073cd44

Please sign in to comment.