Fix misaligned triple-quote blocks

This commit is contained in:
mayeut
2021-05-03 13:12:36 -04:00
committed by Henry Schreiner
parent 178aaea6c7
commit d1900f6a05
21 changed files with 154 additions and 158 deletions
+3 -9
View File
@@ -13,22 +13,16 @@ def main():
parser.add_argument(
'--open',
action='store_true',
help='''
Open the generated project in a file explorer
''',
help='Open the generated project in a file explorer',
)
parser.add_argument(
'PROJECT',
help='''
Python path to a project object. E.g. test.test_0_basic.basic_project
''',
help='Python path to a project object. E.g. test.test_0_basic.basic_project',
)
parser.add_argument(
'OUTPUT',
nargs='?',
help='''
Path to output dir. If no dir is passed, a tempdir will be generated.
''',
help='Path to output dir. If no dir is passed, a tempdir will be generated.',
)
options = parser.parse_args()