The aim of this PR is to avoid using the options parameter when instantiating the class. For example, change from "_code_postal = CodePostal(Options())" to "_code_postal = CodePostal()".
In this case, options has a default value (all options are false) .
"_code_postal = CodePostal(Options())"
to"_code_postal = CodePostal()"
. In this case, options has a default value (all options are false) .