Skip to content

Commit

Permalink
Fixing security check
Browse files Browse the repository at this point in the history
  • Loading branch information
dmvieira committed Jan 20, 2021
1 parent e1c1107 commit 6298b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/analyse-in-memory/analyser/adwin_analyser.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def main(predictor: ADWINPredictor):
connection = Connection(engine, bulk_size=1000, bulk_time=1)

name = os.environ["ANALYSER_NAME"]
with open(f"/tmp/{name}_results.csv", "w") as f:
with open(f"/tmp/{name}_results.csv", "w") as f: # nosec
predictor = predictor(connection, f)

analyser = Analyser( # nosec
Expand Down

0 comments on commit 6298b78

Please sign in to comment.