```python from luigi.util import inherits class Config(luigi.Config): hoge: int = luigi.IntParameter() @inherits(Config) class Hoge(gokart.TaskOnKart): ... Hoge(hoge=1) # mypy error ```