選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

base.py 164B

123456
  1. from typing import Optional
  2. class BaseServiceError(ValueError):
  3. def __init__(self, description: Optional[str] = None):
  4. self.description = description