diff --git a/parsons/etl/etl.py b/parsons/etl/etl.py index 2bc15081ca..a7be58f9fd 100644 --- a/parsons/etl/etl.py +++ b/parsons/etl/etl.py @@ -672,7 +672,7 @@ def unpack_nested_columns_as_rows(self, column, key="id", expand_original=False) lambda row: hashlib.md5( str.encode("".join([str(x) for x in row])) ).hexdigest(), - ) + ) # nosec B324 orig.move_column("uid", 0) # Rename value column in case this is done again to this Table @@ -695,7 +695,7 @@ def unpack_nested_columns_as_rows(self, column, key="id", expand_original=False) melted_list.add_column( "uid", lambda row: hashlib.md5(str.encode("".join([str(x) for x in row]))).hexdigest(), - ) + ) # nosec B324 melted_list.move_column("uid", 0) output = melted_list