Skip to content

Commit

Permalink
Merge branch 'release' into egibs-update-python3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Gibler authored Apr 30, 2024
2 parents 414c53e + e52491f commit 0fdad92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_scenarios/send_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def main(args):
return False

with open(args.file) as file:
data = yaml.load(file, Loader=yaml.FullLoader)
data = yaml.safe_load(file, Loader=yaml.FullLoader)

# ensure UTC
args.panther_compromise_datetime = args.panther_compromise_datetime.replace(tzinfo=timezone.utc)
Expand Down

0 comments on commit 0fdad92

Please sign in to comment.