Skip to content

Commit cff1b35

Browse files
authored
additional import statement, code tags (#17)
1 parent 6c947c5 commit cff1b35

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

quickstarts/python-detect-anomalies.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
33
# <imports>
4+
import os
45
import requests
56
import json
67
# </imports>
@@ -63,7 +64,8 @@ def detect_latest(request_data):
6364
# <fileLoad>
6465
file_handler = open(data_location)
6566
json_data = json.load(file_handler)
67+
# </fileLoad>
68+
# <methodCalls>
6669
detect_batch(json_data)
6770
detect_latest(json_data)
68-
# </fileLoad>
69-
71+
# </methodCalls>

0 commit comments

Comments
 (0)