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

12 行
320B

  1. class Param:
  2. __slots__ = ('fbqueue', 'msg', 'analyse_type', 'base_dir', 'context')
  3. def __init__(self, fbqueue, msg, analyse_type, base_dir, context):
  4. self.fbqueue = fbqueue
  5. self.msg = msg
  6. self.analyse_type = analyse_type
  7. self.base_dir = base_dir
  8. self.context = context