Skip to content

Commit

Permalink
Merge pull request #31 from deoren/class-doc-comments
Browse files Browse the repository at this point in the history
Convert general comments to Class docstring
  • Loading branch information
deoren authored Jul 23, 2018
2 parents 60425ad + 3ab6d45 commit b3f799e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions automated_tickets_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,13 @@ def __init__(self, config_file_list):
self.log.exception("Unable to parse config file: %s", error)
sys.exit(1)

# Honor boolean flags set within main script config file and only
# output specific log levels to the console.
class ConsoleFilterFunc(logging.Filter):

"""
Honor boolean flags set within main script config file and only
output specific log levels to the console.
"""

def __init__(self, settings):
self.settings = settings
#print("Just proving that this function is being called")
Expand Down

0 comments on commit b3f799e

Please sign in to comment.