Results 42 comments of Brian

I'm seeing the same on MacOS Catalina (10.15.7) installed both from the x64 package (1.5.11.5) and from homebrew. The login window doesn't come up at all, no `yakyak` directory in`/.config`.

I confirmed the bug and after some research, found the reason. Browsers handle password submits differently. Firefox only offers to save passwords when there is a `form.submit()` event that includes...

Removing the headers is only part of a fuller solution. The `upload` object on XHR requests can also trigger a preflight check which can fail in some cases with third...

From the mypy docs, it looks like the best way to add type checks is to either annotate the source directly or create `*.pyi` files with stubs in the main...

Ok, I wrote too soon. `mypy` includes a CLI tool called `stubgen` which takes a file as an argument and writes stubs (typed to `Any` initially) out to a specified...

So, this failed because of the `mdl` check on spaces after list markers. The rule specifies 1, the contribution guidelines all use 3. Do you want to reformat for the...

Is it possible to pass the diffed file only to precommit? I got it working with `discover` on the tests directory, but couldn't limit it to the committed file only.

I just tried and got the same result, testing against myself (so I know I had a login). [Here's the method in the `User` object](https://github.com/ucfopen/canvasapi/blob/9383a97602a9e794eca76397ba4d521f1e983ad9/canvasapi/user.py#L205). Canvas is returning data from...

Nevermind, figured it out. Canvas returns an object with nested `links` and `events` objects. The library expects `events`, but when you iterate the `PaginatedList`, `links` doesn't have the correct structure...

Ah, I forgot about `_root`! @jessemcbride, I think I've even asked you about that argument in the past. I'd do that instead ☝️ .