Likely due to string format bug in this line: https://github.com/TyVik/YaDiskClient/blob/f2350b4be2e88f282e7a49cafebb7e8e7c37efd9/YaDiskClient/YaDiskClient.py#L66 Which results in literal string "OAuth %s". Probably need to change to `"OAuth %s" % self.token` or `f"OAuth {self.token}"`
Likely due to string format bug in this line:
YaDiskClient/YaDiskClient/YaDiskClient.py
Line 66 in f2350b4
Which results in literal string "OAuth %s". Probably need to change to
"OAuth %s" % self.tokenor
f"OAuth {self.token}"