Skip to content

Commit

Permalink
fix too long line in exceptions.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rwblair committed May 17, 2024
1 parent 626b07b commit 131d1a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nireports/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ class ReportletException(NiReportsException):

class RequiredReportletException(ReportletException):
def __init__(self, config):
self.args = (
f"No content found while generated reportlet listed as required with the following config: {config}",
)
message = (f"No content found while generated reportlet listed as required with the"
f"following config: {config}")
self.args = (message)

0 comments on commit 131d1a5

Please sign in to comment.