Skip to content

Commit 04d574f

Browse files
committed
fixed loop exiting to soon
1 parent ecf05d5 commit 04d574f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

app.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,7 @@ def main():
178178
# Check if there is actually any Diff
179179
if globalDiff.get("removed").__len__() + globalDiff.get("added").__len__() <= 0:
180180
logger.debug("No Changes were made, skipping...")
181-
182-
return
181+
continue
183182

184183
logger.info(f"Sending Diff to {ENDPOINT} with{"out" if not ENDPOINT_KEY else ""} Auth")
185184

0 commit comments

Comments
 (0)