Get the regex pattern to match the coding compression time. Return: The regex pattern.
(self)
| 196 | return re.compile('^(?!x)x$') |
| 197 | |
| 198 | def get_coding_time_pattern(self) -> re.Pattern: |
| 199 | ''' |
| 200 | Get the regex pattern to match the coding compression time. |
| 201 | |
| 202 | Return: |
| 203 | The regex pattern. |
| 204 | ''' |
| 205 | # pylint: disable=unused-argument,redundant-returns-doc |
| 206 | assert False, 'Missing subclass implementation' |
| 207 | return re.compile('^(?!x)x$') |
| 208 | |
| 209 | def get_coding_rate_pattern(self) -> re.Pattern: |
| 210 | ''' |