-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use ruff formatter as pre-commit (#103)
* Use ruff formatter as pre-commit * Update code * Update docs
- Loading branch information
Showing
15 changed files
with
520 additions
and
514 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,34 @@ | ||
class config: | ||
r"""Get/set defaults for the :mod:`opensmile` module.""" | ||
|
||
CONFIG_ROOT = 'config' | ||
CONFIG_ROOT = "config" | ||
"""Root directory of config files.""" | ||
|
||
CONFIG_EXT = '.conf' | ||
CONFIG_EXT = ".conf" | ||
"""Extension of config files.""" | ||
|
||
EXTERNAL_SOURCE_COMPONENT = 'extsource' | ||
EXTERNAL_SOURCE_COMPONENT = "extsource" | ||
"""Standard component name for external input.""" | ||
|
||
EXTERNAL_OUTPUT_COMPONENT = 'extsink' | ||
EXTERNAL_OUTPUT_COMPONENT = "extsink" | ||
"""Standard component name for external data output.""" | ||
|
||
FILE_INPUT_CONFIG = 'shared/standard_wave_input.conf.inc' | ||
FILE_INPUT_CONFIG = "shared/standard_wave_input.conf.inc" | ||
"""Standard config name for wave input from file.""" | ||
|
||
EXTERNAL_INPUT_CONFIG = \ | ||
'shared/standard_external_wave_input.conf.inc' | ||
EXTERNAL_INPUT_CONFIG = "shared/standard_external_wave_input.conf.inc" | ||
"""Standard config name for external wave input.""" | ||
|
||
EXTERNAL_OUTPUT_SINGLE_CONFIG = \ | ||
'shared/standard_external_data_output_single.conf.inc' | ||
EXTERNAL_OUTPUT_SINGLE_CONFIG = ( | ||
"shared/standard_external_data_output_single.conf.inc" | ||
) | ||
"""Standard config name for external data output from a single level.""" | ||
|
||
EXTERNAL_OUTPUT_MULTI_CONFIG = \ | ||
'shared/standard_external_data_output_multi.conf.inc' | ||
EXTERNAL_OUTPUT_MULTI_CONFIG = "shared/standard_external_data_output_multi.conf.inc" | ||
"""Standard config name for external data output from multiple levels.""" | ||
|
||
FILE_OUTPUT_CONFIG = \ | ||
'shared/standard_data_output.conf.inc' | ||
FILE_OUTPUT_CONFIG = "shared/standard_data_output.conf.inc" | ||
"""Standard config name for external data output.""" | ||
|
||
FILE_OUTPUT_CONFIG_NO_LLD_DE = \ | ||
'shared/standard_data_output_no_lld_de.conf.inc' | ||
FILE_OUTPUT_CONFIG_NO_LLD_DE = "shared/standard_data_output_no_lld_de.conf.inc" | ||
"""Standard config name for external data output without lld_de level.""" |
Oops, something went wrong.