Skip to content

Commit

Permalink
Renaming calculator to counter in example
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenburns committed Sep 24, 2024
1 parent 8fc2bd1 commit 715080c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def action_change_count(self, amount: int) -> None:
self.count += amount


class CalculatorApp(App[None]):
CSS_PATH = "calculator.tcss"
class CounterApp(App[None]):
CSS_PATH = "counter.tcss"

def compose(self) -> ComposeResult:
yield Counter()
Expand All @@ -31,5 +31,5 @@ def compose(self) -> ComposeResult:


if __name__ == "__main__":
app = CalculatorApp()
app = CounterApp()
app.run()
File renamed without changes.

0 comments on commit 715080c

Please sign in to comment.