Skip to content

Commit 8ee68b6

Browse files
authored
minor fixes to language id example (#92)
1 parent 20fab66 commit 8ee68b6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

examples/language_identification_example.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
from rev_ai import language_identification_client
1818

1919

20-
# String containing your access token
2120
from rev_ai.models.customer_url_data import CustomerUrlData
2221

22+
# String containing your access token
2323
access_token = "<your_access_token>"
2424

2525
# Create your api client
@@ -35,7 +35,7 @@
3535
source_config=source_config,
3636
notification_config=None)
3737

38-
print("Submitted Job")
38+
print("Submitted Job: {}".format(job.id))
3939

4040
while True:
4141
# Obtains details of a job in json format
@@ -79,5 +79,7 @@
7979
# if you're sure you want to delete the job.
8080
#
8181
# client.delete_job(job.id)
82+
#
83+
# print("Deleted Job: {}".format(job.id))
8284

8385
print("Job Submission and Collection Finished.")

0 commit comments

Comments
 (0)