diff --git a/alchemiscale_fah/compute/service.py b/alchemiscale_fah/compute/service.py index 44c4d3c..0a87ae0 100644 --- a/alchemiscale_fah/compute/service.py +++ b/alchemiscale_fah/compute/service.py @@ -101,8 +101,10 @@ def __init__(self, settings: FahAsynchronousComputeServiceSettings): # halt immediately if any project features a core id that is not supported for fah_project in self.fah_projects: if fah_project.core_id not in settings.fah_core_ids_supported: - raise ValueError(f"FAH project '{fah_project.project_id}' configured with unsupported core id '{fah_project.core_id}'; " - f"check `settings.fah_core_ids_supported` for allowed core ids") + raise ValueError( + f"FAH project '{fah_project.project_id}' configured with unsupported core id '{fah_project.core_id}'; " + f"check `settings.fah_core_ids_supported` for allowed core ids" + ) self.fah_cert_update_interval = settings.fah_cert_update_interval diff --git a/alchemiscale_fah/compute/settings.py b/alchemiscale_fah/compute/settings.py index 7e73381..ae08c9e 100644 --- a/alchemiscale_fah/compute/settings.py +++ b/alchemiscale_fah/compute/settings.py @@ -61,5 +61,5 @@ class FahAsynchronousComputeServiceSettings(ComputeServiceSettings): ) fah_core_ids_supported: List[str] = Field( ..., - description="List of supported core IDs in hex (base 16) format. E.g. 0xa8." + description="List of supported core IDs in hex (base 16) format. E.g. 0xa8.", ) diff --git a/alchemiscale_fah/settings/fah_settings.py b/alchemiscale_fah/settings/fah_settings.py index f09d776..a4644d2 100644 --- a/alchemiscale_fah/settings/fah_settings.py +++ b/alchemiscale_fah/settings/fah_settings.py @@ -91,8 +91,7 @@ class FahOpenMMCoreSettings(SettingsBaseModel): description="If 1, will disable checkpoint State tests; 0 will perform State tests (default: 0)", ) disableViewer: int = Field( - 0, - description="If 1 the writing of viewer files will be disabled (default: 0)" + 0, description="If 1 the writing of viewer files will be disabled (default: 0)" ) MWExclusionThreshold: float = Field( 0,