summaryrefslogtreecommitdiff
path: root/plac/doc/example8.py
diff options
context:
space:
mode:
Diffstat (limited to 'plac/doc/example8.py')
-rw-r--r--plac/doc/example8.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/plac/doc/example8.py b/plac/doc/example8.py
deleted file mode 100644
index 1dad399..0000000
--- a/plac/doc/example8.py
+++ /dev/null
@@ -1,8 +0,0 @@
-# example8.py
-def main(command: ("SQL query", 'option', 'c'), dsn):
- if command:
- print('executing %s on %s' % (command, dsn))
- # ...
-
-if __name__ == '__main__':
- import plac; plac.call(main)