Skip to content

Commit

Permalink
Resurrect UI functionality.
Browse files Browse the repository at this point in the history
  • Loading branch information
KelSolaar committed Jun 16, 2024
1 parent 9174f3e commit 2560c2b
Show file tree
Hide file tree
Showing 15 changed files with 691 additions and 634 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ repos:
rev: 1.16.0
hooks:
- id: blacken-docs
language_version: python3.9
language_version: python3.10
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v3.1.0"
hooks:
Expand Down
42 changes: 21 additions & 21 deletions aces/idt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
SD_ILLUMINANT_ACES,
SDS_COLORCHECKER_CLASSIC,
SETTINGS_SEGMENTATION_COLORCHECKER_CLASSIC,
BaseSerializable,
DecodingMethods,
DirectoryStructure,
IDTMetaData,
IDTMetadataProperty,
Interpolators,
LUTSize,
Metadata,
MetadataProperty,
MixinSerializableProperties,
OptimizationSpace,
PathEncoder,
ProjectSettingsMetadataConstants,
Expand All @@ -28,9 +28,9 @@
get_sds_colour_checker,
get_sds_illuminant,
hash_file,
idt_metadata_property,
list_sub_directories,
mask_outliers,
metadata_property,
optimisation_factory_IPT,
optimisation_factory_Oklab,
png_compare_colour_checkers,
Expand All @@ -44,12 +44,27 @@
from .application import IDTGeneratorApplication # isort: skip

__all__ = [
"CAT",
"OPTIMISATION_FACTORIES",
"RGB_COLORCHECKER_CLASSIC_ACES",
"SAMPLES_COUNT_DEFAULT",
"SD_ILLUMINANT_ACES",
"SDS_COLORCHECKER_CLASSIC",
"SETTINGS_SEGMENTATION_COLORCHECKER_CLASSIC",
"DecodingMethods",
"DirectoryStructure",
"Interpolators",
"LUTSize",
"Metadata",
"MetadataProperty",
"MixinSerializableProperties",
"OptimizationSpace",
"PathEncoder",
"ProjectSettingsMetadataConstants",
"RGBDisplayColourspace",
"SerializableConstants",
"UICategories",
"UITypes",
"clf_processing_elements",
"error_delta_E",
"extract_archive",
Expand All @@ -60,34 +75,19 @@
"hash_file",
"list_sub_directories",
"mask_outliers",
"metadata_property",
"optimisation_factory_IPT",
"optimisation_factory_Oklab",
"png_compare_colour_checkers",
"slugify",
"sort_exposure_keys",
"working_directory",
"CAT",
"DirectoryStructure",
"DecodingMethods",
"Interpolators",
"LUTSize",
"OptimizationSpace",
"ProjectSettingsMetadataConstants",
"RGBDisplayColourspace",
"UICategories",
"UITypes",
"BaseSerializable",
"IDTMetaData",
"IDTMetadataProperty",
"PathEncoder",
"SerializableConstants",
"idt_metadata_property",
]

__all__ += ["IDTProjectSettings"]
__all__ += [
"GENERATORS",
"IDTBaseGenerator",
"IDTGeneratorProsumerCamera",
"GENERATORS",
]
__all__ += ["IDTGeneratorApplication"]
Loading

0 comments on commit 2560c2b

Please sign in to comment.