Skip to content

Commit

Permalink
Fix modules.py def of 'cattrs' known 3rd party module
Browse files Browse the repository at this point in the history
This was missing one of the namespaces included in that library.
  • Loading branch information
whardier authored Dec 12, 2022
1 parent c5345a0 commit a246dd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flake8_requirements/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@
"azure-storage-queue": ["azure.storage.queue"],
"beautifulsoup4": ["bs4"],
"bitvector": ["BitVector"],
"cattrs": ["cattr"],
"cattrs": ["cattr", "cattrs"],
"cx-oracle": ["cx_Oracle"],
"databricks-connect": ["pyspark"],
"django-ajax-selects": ["ajax_select"],
Expand Down

0 comments on commit a246dd4

Please sign in to comment.