From afee5c0ed1df08b5f38a24c0082f3392be03c6be Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Thu, 5 May 2022 14:39:54 +0100 Subject: [PATCH] simplify --- sandbox/uber.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sandbox/uber.py b/sandbox/uber.py index 5dc1c20fa..b8dcbffc4 100644 --- a/sandbox/uber.py +++ b/sandbox/uber.py @@ -76,9 +76,7 @@ class BasicApp(App): self.focused.styles.border_top = ("solid", "invalid-color") -app = BasicApp( - css_path="uber.css", -) +app = BasicApp(css_path="uber.css") if __name__ == "__main__": app.run()