Type ignore comments are standard constructs in python code. I think it would be based if black formatted them.
a: SUS = "AMONGUS" + 1 # type:ignore [ name-defined , operator ,misc ]
Could be formatted to:
a: SUS = "AMONGUS" + 1 # type: ignore[name-defined, operator, misc]
Type ignore comments are standard constructs in python code. I think it would be based if black formatted them.
Could be formatted to: