From 6c15a413c6946519ec352617d5cea507045499cc Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sun, 1 Oct 2023 16:23:39 -0500 Subject: [PATCH] Reformat with black --- db/schemas/gen_comments.py | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/db/schemas/gen_comments.py b/db/schemas/gen_comments.py index b3da1b4..c783c40 100755 --- a/db/schemas/gen_comments.py +++ b/db/schemas/gen_comments.py @@ -83,9 +83,11 @@ SQL = { class DuplicateError(Exception): """Db object exists in more than one schema""" + class NoFileWarning(Warning): """No m4 file to go with what looks like a db comment""" + class SQLFile: """Write to a file of sql statements that manipulate comments""" @@ -241,11 +243,14 @@ def comments_from_file(file, db_objs): comment = [match.group(3).lstrip()] in_match = True else: - print(NoFileWarning( - f"Warning: File {file}: Line {lineno}:" - f" Replacement string: {obj}:" - f" Looks like a db object comment but no" - " corresponding m4 file exists")) + print( + NoFileWarning( + f"Warning: File {file}: Line {lineno}:" + f" Replacement string: {obj}:" + f" Looks like a db object comment but no" + " corresponding m4 file exists" + ) + ) lineno += 1 -- 2.34.1