yandex / yandex_tracker_client

Python client for working with Yandex.Tracker Api
Other
59 stars 22 forks source link

NameError: name '..................................' is not defined #2

Closed thc2018 closed 4 years ago

thc2018 commented 4 years ago

from yandex_tracker_client import TrackerClient client = TrackerClient(token=.................., org_id=XXXXX)

python3 ya_get.py Traceback (most recent call last): File "ya_get.py", line 2, in client = TrackerClient(token=.........................., org_id=XXXXX) NameError: name '....................' is not defined

Python 3.7.3

Smosker commented 4 years ago

hello! Can you please provide full sample with full traceback? Tried lastest version on 3.7.5

from yandex_tracker_client import TrackerClient
client = TrackerClient(token='smth', org_id='1111')  # -> no error

got no error

thc2018 commented 4 years ago

The problem was "'" is missing in my case

Thank you!