1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-21 00:19:42 +02:00

pep8 fixes

This commit is contained in:
Kelly Brazil
2019-11-14 16:36:00 -08:00
parent 64647d230a
commit 04a1ff2ca7
8 changed files with 28 additions and 28 deletions

View File

@ -43,13 +43,13 @@ def process(proc_data):
Final processing to conform to the schema.
Parameters:
proc_data: (dictionary) raw structured data to process
Returns:
dictionary structured data with the following schema:
[
{
"line": string,
@ -74,7 +74,7 @@ def parse(data, raw=False, quiet=False):
Main text parsing function
Parameters:
data: (string) text data to parse
raw: (boolean) output preprocessed JSON if True
quiet: (boolean) suppress warning messages if True
@ -83,7 +83,7 @@ def parse(data, raw=False, quiet=False):
dictionary raw or processed structured data
"""
# compatible options: linux, darwin, cygwin, win32, aix, freebsd
compatible = ['linux', 'darwin', 'cygwin', 'win32', 'aix', 'freebsd']