2023-11-29 14:57:40 +00:00
|
|
|
---
|
|
|
|
screenplain/main.py | 2 +-
|
|
|
|
setup.cfg | 3 +++
|
|
|
|
2 files changed, 4 insertions(+), 1 deletion(-)
|
|
|
|
|
2020-12-03 23:11:07 +00:00
|
|
|
--- a/screenplain/main.py
|
|
|
|
+++ b/screenplain/main.py
|
2023-11-29 14:57:40 +00:00
|
|
|
@@ -29,7 +29,7 @@ def invalid_format(parser, message):
|
2020-12-03 23:11:07 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
-def main(args):
|
|
|
|
+def main(args=sys.argv[1:]):
|
|
|
|
parser = OptionParser(usage=usage)
|
|
|
|
parser.add_option(
|
|
|
|
'-f', '--format', dest='output_format',
|
|
|
|
--- a/setup.cfg
|
|
|
|
+++ b/setup.cfg
|
2023-11-29 14:57:40 +00:00
|
|
|
@@ -1,6 +1,9 @@
|
2020-12-03 23:11:07 +00:00
|
|
|
[metadata]
|
|
|
|
license_files = LICENSE.txt
|
2023-11-29 14:57:40 +00:00
|
|
|
|
2020-12-03 23:11:07 +00:00
|
|
|
+[pycodestyle]
|
2022-10-05 15:43:57 +00:00
|
|
|
+ignore = E275,E402,W504
|
2023-11-29 14:57:40 +00:00
|
|
|
+
|
|
|
|
[egg_info]
|
|
|
|
tag_build =
|
|
|
|
tag_date = 0
|