Skip to content

Commit

Permalink
Remove unnecessary f-strings
Browse files Browse the repository at this point in the history
  • Loading branch information
davep committed Dec 7, 2023
1 parent 1f5d84a commit a58581d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/snapshot_tests/snapshot_apps/modified_tabs.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ def compose(self) -> ComposeResult:
yield Button()

def on_mount(self) -> None:
self.query_one(TabbedContent).disable_tab(f"tab-1")
self.query_one(TabbedContent).disable_tab(f"tab-2")
self.query_one(TabbedContent).hide_tab(f"tab-3")
self.query_one(TabbedContent).disable_tab("tab-1")
self.query_one(TabbedContent).disable_tab("tab-2")
self.query_one(TabbedContent).hide_tab("tab-3")


if __name__ == "__main__":
Expand Down

0 comments on commit a58581d

Please sign in to comment.