You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
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