Skip to content

Commit 7c098a5

Browse files
committed
fix python linter
1 parent 0874c27 commit 7c098a5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

scripts/jobs/planning/tascomi_create_daily_snapshot.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import sys
22
from datetime import datetime
33

4-
import pydeequ
54
import pyspark.sql.functions as F
65
from awsglue.context import GlueContext
76
from awsglue.dynamicframe import DynamicFrame
@@ -298,7 +297,7 @@ def loadIncrementsSinceDate(increment_table_name, name_space, date):
298297

299298
except Exception as verificationError:
300299
logger.info(
301-
f"Job cancelled due to data quality test failure, continuing to next table."
300+
"Job cancelled due to data quality test failure, continuing to next table."
302301
)
303302
message = verificationError.args
304303
logger.info(f"{message[0]}")
@@ -309,7 +308,7 @@ def loadIncrementsSinceDate(increment_table_name, name_space, date):
309308

310309
else:
311310
logger.info(
312-
f"Data quality tests passed, appending data quality results to JSON and moving on to writing data"
311+
"Data quality tests passed, appending data quality results to JSON and moving on to writing data"
313312
)
314313
verificationSuite.saveOrAppendResult(resultKey).run()
315314

0 commit comments

Comments
 (0)