Arseny Boykov
Arseny Boykov
Reading annotations with tons of `typing___.` before every single type might be quite distracting (they show up in tracebacks). Is this possible to import needed types into namespace instead?
Now all code in the file is getting reformatted (in non PEP-8 style), it would be great to: 1. Change only code that really getting changed (annotations) 2. Make formatting...
```py # -*- coding: future_typing -*- a = 1 | 2 ``` Is getting converted to ```py # -*- coding: utf-8 -*- import typing as typing___ a =typing___.Union [1 ,2...
When debugging line number is interpreted incorrectly. I guess it happens due to `import typing as typing___` line added to a file. I don't know how to fix this entirely,...
I'm trying to configure default rules severity, but I guess, it doesn't work like that: ```js "markdownlint.config": { "default": { "severity": "Information" }, }, ``` Is there a way to...
Issue Type: Bug 1. Use a keyword argument in decorator like so: `@f(foo=None)` 2. Use a keyword argument in regular function cal like so: `f(foo=None)` 3. Observe that `foo` is...
## Short description Allow use dephell jail to install with extra pip arguments, such as `--extra-index-url` ```bash pip install search_stack --extra-index-url=https://pypi.g.smailru.net/devops/openstack-client ``` Setting env variable doesn't help: ```bash ~ $...
It'd be cool to have tool to clean all temp/unnecessary files from project dir, for example ```bash dephell project cleanup ``` ~= ```bash rm -rf build/ dist/ docs/build/ .tox/ .cache/...
### Fixes #54 ### `hero.py`: ```py import asyncio import inspect import sys from contextlib import suppress from pathlib import Path from typing import Optional, TYPE_CHECKING from mypy.main import main as...
# TL;DR: I opened a PR that fixes this (#58). It is being ignored by maintainers for almost a year. ### First Check - [X] I added a very descriptive...