Akuli

Results 324 comments of Akuli

`aiofiles` doesn't have type hints. They are maintained separately at typeshed: https://github.com/python/typeshed/tree/master/stubs/aiofiles

When are you going to add a `py.typed` file to tell type checkers to rely on what's in selenium itself, instead of using typeshed's selenium 3.x stubs? For context, I...

Can someone who does the releases tell me what commit the latest pypi release 4.1.1 is based on? There's no tag in the repo (which makes sense, because the x...

I recommend disabling `--disallow-untyped-calls`. It's not helpful and it only generates noisy warnings. It's meant to be used in projects that want every function call type checked, which isn't yet...

And I might as well mention how to disable the warning in `mypy.ini`: ```ini [mypy] strict = True show_error_codes = True disable_error_code = no-untyped-call ```

My tutorial contains a link to another tutorial online. Did you read that? I could write my own zip and enumerate tutorial, too.

The TODO parts are things that aren't complete. It's common to write comments like `# TODO: blah blah`.

Sure :) Make a fork, edit the file on your fork, and then make a pull request of your edits. GitHub mostly guides you to do all this if you...

Maybe it should be split into 3 parts: - basics (how to loop over lists or use dicts or files, ...) - handy things (defaultdict, counter etc) - advanced things...