Remove debug print statement from should_process_pr_logic function

This commit is contained in:
mrT23 2025-05-16 17:23:27 +03:00
parent 42557feb97
commit f47da75e6f
No known key found for this signature in database
GPG key ID: D350490E39D5F5AD

View file

@ -165,7 +165,6 @@ def should_process_pr_logic(data) -> bool:
return False return False
except Exception as e: except Exception as e:
get_logger().error(f"Failed 'should_process_pr_logic': {e}") get_logger().error(f"Failed 'should_process_pr_logic': {e}")
print("DEBUG: Returning True from should_process_pr_logic")
return True return True