From 13f4a535ab997342519b4c21986dae10c209cd8c Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sun, 1 Oct 2023 16:29:51 -0500 Subject: [PATCH] Simplify logic --- db/schemas/gen_comments.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/db/schemas/gen_comments.py b/db/schemas/gen_comments.py index c783c40..69cc4bc 100755 --- a/db/schemas/gen_comments.py +++ b/db/schemas/gen_comments.py @@ -232,11 +232,8 @@ def comments_from_file(file, db_objs): match = OBJ_SUMMARY.match(line) if match is not None: obj = match.group(2).lower() - column = obj.find(".") != -1 - if column: - obj_name = obj.split(".")[0] - else: - obj_name = obj + obj_name = obj.split(".")[0] + column = obj != obj_name if obj_name in db_objs: indent = len(match.group(1)) prefix = " " * indent -- 2.34.1