Skip to content

Commit

Permalink
missing f
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Dec 22, 2023
1 parent 6a89446 commit 244e42c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/textual/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -1991,7 +1991,7 @@ def install_screen(self, screen: Screen, name: str) -> None:
raise ScreenError(f"Can't install screen; {name!r} is already installed")
if screen in self._installed_screens.values():
raise ScreenError(
"Can't install screen; {screen!r} has already been installed"
f"Can't install screen; {screen!r} has already been installed"
)
self._installed_screens[name] = screen
self.log.system(f"{screen} INSTALLED name={name!r}")
Expand Down

0 comments on commit 244e42c

Please sign in to comment.