Merge pull request #463 from Textualize/start-accepting-paths-in-textual-api

[API] Start accepting PathLike objects here and there
This commit is contained in:
Will McGugan
2022-05-05 10:48:11 +01:00
committed by GitHub
31 changed files with 74 additions and 63 deletions

View File

@@ -76,7 +76,7 @@ class BasicApp(App):
self.focused.styles.border_top = ("solid", "invalid-color")
app = BasicApp(css_file="uber.css", log="textual.log", log_verbosity=1)
app = BasicApp(css_path="uber.css", log_path="textual.log", log_verbosity=1)
if __name__ == "__main__":
app.run()