aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/import_common.py
Commit message (Collapse)AuthorAgeFilesLines
* typing: first batch of python bulk type annotationsBryan Newbold2021-11-031-1/+1
| | | | | | While these changes are more delicate than simple lint changes, this specific batch of edits and annotations was *relatively* simple, and resulted in few code changes other than function signature additions.
* fmt (black): tests/Bryan Newbold2021-11-021-4/+5
|
* python: isort everythingBryan Newbold2021-11-021-4/+4
|
* lint: simple, safe inline lint fixesBryan Newbold2021-11-021-3/+3
| | | | '==' vs 'is'; 'not a in b' vs 'a not in b'; etc
* update fuzzy helper to pass 'reason' through to import codeBryan Newbold2020-12-171-2/+2
| | | | | The motivation for this change is to enable passing the 'reason' through to edit extra metadata, in cases where we merge or cluster releases.
* add fuzzy matching helper to importer base classBryan Newbold2020-12-161-0/+78
Using fuzzycat. Add basic test coverage.