我应该为方法“self”参数使用什么类型?

What type should I use for a methods `self` argument?

如果我在我的项目中使用 mypy,我的方法自身对象应该是什么类型?

from typing import List

class Example:
    def __init__(self, arg1: List[str]) -> None:
        pass

没什么,保持原样。

这是我从他们的文档中可以看出的: https://mypy.readthedocs.io/en/latest/class_basics.html?highlight=self