Skip to content

Commit

Permalink
additional import statement, code tags (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
aahill committed Oct 15, 2019
1 parent 6c947c5 commit cff1b35
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions quickstarts/python-detect-anomalies.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
# <imports>
import os
import requests
import json
# </imports>
Expand Down Expand Up @@ -63,7 +64,8 @@ def detect_latest(request_data):
# <fileLoad>
file_handler = open(data_location)
json_data = json.load(file_handler)
# </fileLoad>
# <methodCalls>
detect_batch(json_data)
detect_latest(json_data)
# </fileLoad>

# </methodCalls>

0 comments on commit cff1b35

Please sign in to comment.