-
```console
$ pip install -e .
Obtaining file:///tmp/flynt
ERROR: Complete output from command python setup.py egg_info:
ERROR: ['', '/tmp/flynt/venv/lib/python36.zip', '/tmp/flynt/venv/lib…
-
https://github.com/asottile/pyupgrade covers the same functionality. Flynt should cover the usecases of pyupgrade.
-
```console
$ flynt t.py
Traceback (most recent call last):
File "/tmp/flynt/venv/bin/flynt", line 11, in
load_entry_point('flynt', 'console_scripts', 'flynt')()
File "/tmp/flynt/venv/lib…
-
https://github.com/asottile/pyupgrade features a different way to do the same thing that flynt does. This is an opportunity to make implementation simpler / delegate.
-
I would like to use flynt as a framework, but build my own components. On a fresh install of the flynt starter theme, things work great. However, if I delete all the default components from the compon…
-
We use [openpyxl](https://openpyxl.readthedocs.io) to generate some Excel reports and it has an unsual syntax, but completely logical in Excel land, that lets you select a subset of a sheet in a workb…
-
To prevent https://github.com/weaveworks/service-conf/issues/2021, we would like to have a flag on the user or team to disable billing for new instances where there is a special case in terms of billi…
-
f-strings imply python3.6+, therefore users can benefit from further code transformations by using pyupgrade.
command is `find flask -name '*.py' -exec pyupgrade {} --py36-plus ;`
-
Hi, great little utility! I have lots of perfect changes added to my project with it. But this one seems to be off:
Take this line:
```python
log.notice("Search: finished in {0:,} ms.".format(v…
-
Hi there,
I think it would be great to have at least one example to see the result of the module in readme file.
Thanks