I put these on the top of a module:
# mypy: disable-error-code=misc
# mypy: disable-error-code=attr-defined
but only the last line is honoured, the first one is ignored. The same with reversed order or with three lines. In each case all lines except the last one are ignored. I was also trying to aggregate it into one line but failed.
What is the correct syntax to suppress multiple mypy errors in the whole module?