Skip to content

Commit 244e42c

Browse files
committed
missing f
1 parent 6a89446 commit 244e42c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/textual/app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1991,7 +1991,7 @@ def install_screen(self, screen: Screen, name: str) -> None:
19911991
raise ScreenError(f"Can't install screen; {name!r} is already installed")
19921992
if screen in self._installed_screens.values():
19931993
raise ScreenError(
1994-
"Can't install screen; {screen!r} has already been installed"
1994+
f"Can't install screen; {screen!r} has already been installed"
19951995
)
19961996
self._installed_screens[name] = screen
19971997
self.log.system(f"{screen} INSTALLED name={name!r}")

0 commit comments

Comments
 (0)