Skip to content

Commit 6a25b8f

Browse files
authored
Merge pull request #73 from aahill/ir-sdk
Fixing code tags
2 parents cf84e32 + 721ec78 commit 6a25b8f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

samples/vision/inkrecognizer_sample.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def __init__(self,
5252
# (3) Indexing a key word from recognition results
5353
# (4) Set application kind if user know expected type of ink content
5454

55+
5556
# <inkClient>
5657
class InkClient:
5758
def __init__(self, url, key):
@@ -60,8 +61,6 @@ def __init__(self, url, key):
6061
key,
6162
application_kind=APPLICATION_KIND, # default arguments for each request.
6263
)
63-
# </inkClient>
64-
# <requestMethod>
6564
def send_request(self, ink_stroke_list):
6665
self._root = None
6766
try:
@@ -81,7 +80,7 @@ def send_request(self, ink_stroke_list):
8180
self._root = root
8281
except Exception as e:
8382
messagebox.showinfo("Error", e)
84-
# </requestMethod>
83+
# </inkClient>
8584

8685
# <recognitionManager>
8786
class RecognitionManager:

0 commit comments

Comments
 (0)