Skip to content

Commit

Permalink
Update existing docstring return type formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nickviola committed Oct 5, 2021
1 parent 33f3bb1 commit ece7e9a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/assessment/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def display_list_pages(assessment):
def build_assessment(assessment_id):
"""Walk user through building a new assessment document.
: return an assessment object
Returns: an assessment object
"""
logging.info("Building Assessment")
# Initializes assessment object with ID and timezone
Expand Down Expand Up @@ -506,9 +506,7 @@ def build_emails(domains, labels):
validator=EmailValidator(),
)
else:
logging.error(
"{} Domain Mismatch Errors".format(len(format_error))
)
logging.error("{} Domain Mismatch Errors".format(len(format_error)))
if (
yes_no_prompt("Would you like to correct each here? (yes/no)")
== "yes"
Expand Down

0 comments on commit ece7e9a

Please sign in to comment.