Get the regex pattern to match the total compression time. Return: The regex pattern.
(self)
| 185 | return re.compile('^(?!x)x$') |
| 186 | |
| 187 | def get_total_time_pattern(self) -> re.Pattern: |
| 188 | ''' |
| 189 | Get the regex pattern to match the total compression time. |
| 190 | |
| 191 | Return: |
| 192 | The regex pattern. |
| 193 | ''' |
| 194 | # pylint: disable=unused-argument,redundant-returns-doc |
| 195 | assert False, 'Missing subclass implementation' |
| 196 | return re.compile('^(?!x)x$') |
| 197 | |
| 198 | def get_coding_time_pattern(self) -> re.Pattern: |
| 199 | ''' |