Some cosmetics

This commit is contained in:
stephan 2020-02-17 14:58:18 +01:00
parent 6e87e0decd
commit 5d2fee029e

11
nlp
View File

@ -40,16 +40,17 @@ def parse_arguments():
dest='zip', dest='zip',
type=str, type=str,
help='''package result files in zip bundles takes a help='''package result files in zip bundles takes a
string as a filename as an optional paramteer''', string as a filename as an optional paramteer''',
required=False) required=False)
parser.add_argument('--check-encoding', parser.add_argument('--check-encoding',
action='store_true', action='store_true',
default=False, default=False,
dest="check_encoding", dest="check_encoding",
help='''if used the nlp process will know hat the encoding of help='''if used the nlp process will know hat the
the input files is unkown and thus != utf-8. The process will encoding of the input files is unkown and
try to determine the encoding of the input files and use this. thus != utf-8. The process will try to determine
encoding.''' the encoding of the input files and use this.
encoding.'''
) )
return parser.parse_args() return parser.parse_args()