Marvin Scham
Marvin Scham
Had the same issue, seems to be related to the auth implementation provided by doreah. https://github.com/krateng/maloja/blob/3ba27ffc371d6087b58314231d9bc291a0d163c2/maloja/pkg_global/conf.py#L348 I replaced the code above with the following monkey patch to temporarily alleviate the...
Had this issue, this workaround worked for me: https://github.com/krateng/maloja/issues/382#issuecomment-2413299342
@flyinggoatman I fixed this for my usecase by removing `self.jwt = None` at https://github.com/KartikTalwar/Duolingo/blob/master/duolingo.py#L100, which then allowed me to instantiate like `lingo = duolingo.Duolingo(username='myUsername', jwt='myJWT')` You can grab your JWT...