Skip to content

0.1.7: Whitelisting symbols

Latest
Compare
Choose a tag to compare
@decorator-factory decorator-factory released this 26 Feb 12:05
· 2 commits to master since this release

You can now whitelist individual imports from typing:

# command line
flake8 --pep585-whitelisted-symbols='Callable Match Pattern' src/
# setup.cfg
pep585-whitelisted-symbols = 
    Callable
    Match
    Pattern