def __init__(self, name: str, description: str, count_index: int):
     PerLevelFeature.__init__(self,
                              name=name,
                              description=description,
                              count_index=count_index)
     self._begin_times: List[datetime] = []
     self._complete_times: List[datetime] = []
 def __init__(self, name: str, description: str, count_index: int):
     PerLevelFeature.__init__(self,
                              name=name,
                              description=description,
                              count_index=count_index)
     self._seq = ''
     self._lastSliderType = ''
Example #3
0
 def __init__(self, name: str, description: str, count_index: int):
     PerLevelFeature.__init__(self,
                              name=name,
                              description=description,
                              count_index=count_index)
     self._std_devs = []
 def __init__(self, name: str, description: str, count_index: int):
     PerLevelFeature.__init__(self,
                              name=name,
                              description=description,
                              count_index=count_index)
     self._num_completes = 0
Example #5
0
 def __init__(self, name:str, description:str, count_index:int):
     PerLevelFeature.__init__(self, name=name, description=description, count_index=count_index)
     self._last_move = None
     self._change_count = 0
Example #6
0
 def __init__(self, name: str, description: str, count_index: int):
     PerLevelFeature.__init__(self,
                              name=name,
                              description=description,
                              count_index=count_index)
     self._slider_move_count: int = 0
Example #7
0
 def __init__(self, name:str, description:str, count_index:int):
     PerLevelFeature.__init__(self, name=name, description=description, count_index=count_index)
     self._menu_btn_count = 0