diff options
author | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2022-01-29 16:28:17 +0000 |
---|---|---|
committer | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2022-01-29 16:28:17 +0000 |
commit | d79d962ed7046a7fc6a53bdfe472d68f273f3b68 (patch) | |
tree | 1f2d820f66283f8905b947ca14c734dcf26a4973 /docutils/tools/docutils-cli.py | |
parent | fbf6ed81005614eb13e3db1c6c53f565cb22ef44 (diff) | |
download | docutils-d79d962ed7046a7fc6a53bdfe472d68f273f3b68.tar.gz |
Fix code indentation
Check conformance to our coding policies with flake8.
Fix the following problems:
E111 indentation is not a multiple of four
E114 indentation is not a multiple of four (comment)
E115 expected an indented block (comment)
E116 unexpected indentation (comment)
E117 over-indented
E121 continuation line under-indented for hanging indent
E122 continuation line missing indentation or outdented
E124 closing bracked does not match visual indentaion
E127 continuation line over-indented for visual indent
E128 continuation line under-indented for visual indent
E131 continuation line unaligned for hanging indent
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8994 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/tools/docutils-cli.py')
-rwxr-xr-x | docutils/tools/docutils-cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docutils/tools/docutils-cli.py b/docutils/tools/docutils-cli.py index 931c77d3e..0edec1220 100755 --- a/docutils/tools/docutils-cli.py +++ b/docutils/tools/docutils-cli.py @@ -57,7 +57,7 @@ class CliSettingsSpec(docutils.SettingsSpec): # Get default components from configuration files # default to "html5" writer for backwards compatibility default_settings = Publisher().get_settings(settings_spec=CliSettingsSpec, - writer='html5') + writer='html5') argparser = argparse.ArgumentParser( |