i have an error when i try to run the script habiticaTodo/twoWaySync.py
<Response [401]>
Traceback (most recent call last):
File "twoWaySync.py", line 140, in
pkl_out - pickle.Pickler(pkl_file, -1)
NameError: name 'pkl_out' is not defined
reading the code i see an little problem on the line
Hello,
i have an error when i try to run the script habiticaTodo/twoWaySync.py
<Response [401]> Traceback (most recent call last): File "twoWaySync.py", line 140, in
pkl_out - pickle.Pickler(pkl_file, -1)
NameError: name 'pkl_out' is not defined
reading the code i see an little problem on the line
pkl_out - pickle.Pickler(pkl_file, -1)
And i change this to
pkl_out = pickle.Pickler(pkl_file, -1)