From bd0e1c01b1d91860f5faf5cc61fd76f77f2af7eb Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Wed, 19 Oct 2022 15:12:11 +0100 Subject: [PATCH] Remove intro01.py It doesn't appear to be referenced anywhere in the docs. --- docs/examples/tutorial/intro01.py | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 docs/examples/tutorial/intro01.py diff --git a/docs/examples/tutorial/intro01.py b/docs/examples/tutorial/intro01.py deleted file mode 100644 index 6a2e2d4a1..000000000 --- a/docs/examples/tutorial/intro01.py +++ /dev/null @@ -1,9 +0,0 @@ -from textual.app import App - - -class ExampleApp(App): - pass - - -app = ExampleApp() -app.run()