PyCQA / flake8-import-order

Flake8 plugin that checks import order against various Python Style Guides
GNU Lesser General Public License v3.0
278 stars 72 forks source link

Simplify re group access #140

Closed jparise closed 6 years ago

jparise commented 6 years ago

.group(name) is more straightforward than .groupdict()[name].

pgjones commented 6 years ago

Thanks.