sobolevn

Results 602 issues of sobolevn

Many modern-styled python packages with annotations use `poetry` as an installation method. Examples: - https://github.com/wemake-services/wemake-python-styleguide - https://github.com/wemake-services/dotenv-linter Do you think that it should be supported?

For some reason errors from this loader do not show up in friendly-errors-webpack-plugin. ## Output Here's what I got in my terminal: ``` Hash: 4585efb6ea03f7e9685c Version: webpack 3.8.1 Time: 1312ms...

When passing `{'id': 'someId'}` into the `_default_jwt_payload_handler` it raises an exception. The problem is in this expression: `identity = getattr(identity, 'id') or identity['id']` https://github.com/mattupstate/flask-jwt/blob/master/flask_jwt/__init__.py#L53 It must be: `identity = getattr(identity,...

`bci.unspent()` is not working. It fails with the exception `No free outputs to spend`, while the address has unspent outputs. I guess the problem is in the URL. This method...

> You can file an issue for something that you'd like to see covered Related to #2 I would like to propose some improvements on DI section based on #2...

> You can file an issue for something that you'd like to see covered Hi! Thanks a lot of your project! It is very useful! There's one topic that is...

When pasting this code into "Customize Preview Code" form, the second '@' appears before '@decorator'. Language is set to "Python". Theme used: "Twilight". Code: ``` @decorator(param=1) def f(x): """ Syntax...

bug
tmLanguage

Hi! I have tried this code: ```python from hypothesis_auto import auto_pytest_magic from typing import Any def under_test(arg: Any) -> bool: return arg == arg auto_pytest_magic(under_test) ``` And it does not...