Skip to content

Commit 3c69c03

Browse files
committed
fix linter
1 parent 5cefc96 commit 3c69c03

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
@@ -306,7 +305,7 @@ def loadIncrementsSinceDate(increment_table_name, name_space, date):
306305

307306
except Exception as verificationError:
308307
logger.info(
309-
f"Job cancelled due to data quality test failure, continuing to next table."
308+
"Job cancelled due to data quality test failure, continuing to next table."
310309
)
311310
message = verificationError.args
312311
logger.info(f"{message[0]}")
@@ -317,7 +316,7 @@ def loadIncrementsSinceDate(increment_table_name, name_space, date):
317316

318317
else:
319318
logger.info(
320-
f"Data quality tests passed, appending data quality results to JSON and moving on to writing data"
319+
"Data quality tests passed, appending data quality results to JSON and moving on to writing data"
321320
)
322321
verificationSuite.saveOrAppendResult(resultKey).run()
323322

0 commit comments

Comments
 (0)