From 2592af8c9fb5f97a5b38959843861bf0033774d0 Mon Sep 17 00:00:00 2001 From: A_D Date: Mon, 13 Jul 2020 07:05:25 +0200 Subject: [PATCH] block flake8 line length on doc line --- EDMC.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EDMC.py b/EDMC.py index 2a9e94c7..d932f5d9 100755 --- a/EDMC.py +++ b/EDMC.py @@ -47,7 +47,7 @@ def versioncmp(versionstring): try: # arg parsing - parser = argparse.ArgumentParser(prog=appcmdname, description='Prints the current system and station (if docked) to stdout and optionally writes player status, ship locations, ship loadout and/or station data to file. Requires prior setup through the accompanying GUI app.') + parser = argparse.ArgumentParser(prog=appcmdname, description='Prints the current system and station (if docked) to stdout and optionally writes player status, ship locations, ship loadout and/or station data to file. Requires prior setup through the accompanying GUI app.') # noqa:E501 parser.add_argument('-v', '--version', help='print program version and exit', action='store_const', const=True) parser.add_argument('-a', metavar='FILE', help='write ship loadout to FILE in Companion API json format') parser.add_argument('-e', metavar='FILE', help='write ship loadout to FILE in E:D Shipyard plain text format')