SIENTIAPDE-1445
Refactor condition in core_scouter.py for improved readability - Simplified the condition checking for affected rows in the data export logic by removing unnecessary whitespace.
This commit is contained in:
@@ -117,7 +117,7 @@ class CoreScouter:
|
||||
start_to_close_timeout=timedelta(seconds=60),
|
||||
)
|
||||
|
||||
if data_exported.get('affected_rows', 0 ) <= 0:
|
||||
if data_exported.get('affected_rows', 0) <= 0:
|
||||
return
|
||||
|
||||
await workflow.execute_activity_method(
|
||||
|
||||
Reference in New Issue
Block a user