@@ -672,15 +672,15 @@ def add_invertible_flag(flag: str,
672
672
help = "Suppress toplevel errors caused by missing annotations" ,
673
673
group = strictness_group )
674
674
675
- add_invertible_flag ('--disallow-redefinition' , default = True , dest = "allow-redefinition " ,
675
+ add_invertible_flag ('--disallow-redefinition' , default = True , dest = "allow_redefinition " ,
676
676
help = "Disallow unconditional variable redefinition with a new type" ,
677
677
group = strictness_group )
678
678
679
679
add_invertible_flag ('--no-implicit-reexport' , default = True , dest = 'implicit_reexport' ,
680
680
help = "Treat imports as private unless aliased" ,
681
681
group = strictness_group )
682
682
683
- add_invertible_flag ('--no-strict-equality' , default = True , dest = "strict-equality " ,
683
+ add_invertible_flag ('--no-strict-equality' , default = True , dest = "strict_equality " ,
684
684
help = "Allow equality, identity, and container checks for"
685
685
" non-overlapping types" ,
686
686
group = strictness_group )
@@ -703,7 +703,7 @@ def add_invertible_flag(flag: str,
703
703
add_invertible_flag ('--show-column-numbers' , default = False ,
704
704
help = "Show column numbers in error messages" ,
705
705
group = error_group )
706
- add_invertible_flag ('--no-show-error-codes' , default = True , dest = "show-error-codes " ,
706
+ add_invertible_flag ('--no-show-error-codes' , default = True , dest = "show_error_codes " ,
707
707
help = "Don't show error codes in error messages" ,
708
708
group = error_group )
709
709
add_invertible_flag ('--pretty' , default = False ,
0 commit comments