the-13th-letter / derivepassphrase

an almost-faithful Python reimplementation of James Coglan's vault, a deterministic password manager/generator
MIT License
0 stars 0 forks source link

Rename `types` submodules to `_types` #7

Closed the-13th-letter closed 1 month ago

the-13th-letter commented 2 months ago

It appears to be a very bad idea to name a submodule similar to a standard library module, as some tools, e.g. vim's keyword lookup (K), execute the code and then may run into "circular import" problems because the types submodule shadows the types standard library module.

So, rename the types submodules to _types.