1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-13 01:20:24 +02:00

pep8 cleanup

This commit is contained in:
Kelly Brazil
2019-11-14 16:32:11 -08:00
parent c2a67e1b70
commit 64647d230a
6 changed files with 21 additions and 21 deletions

View File

@ -85,7 +85,7 @@ def process(proc_data):
Final processing to conform to the schema. Final processing to conform to the schema.
Parameters: Parameters:
proc_data: (dictionary) raw structured data to process proc_data: (dictionary) raw structured data to process
Returns: Returns:
@ -117,7 +117,7 @@ def parse(data, raw=False, quiet=False):
Main text parsing function Main text parsing function
Parameters: Parameters:
data: (string) text data to parse data: (string) text data to parse
raw: (boolean) output preprocessed JSON if True raw: (boolean) output preprocessed JSON if True
quiet: (boolean) suppress warning messages if True quiet: (boolean) suppress warning messages if True

View File

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

View File

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

View File

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

View File

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

View File

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