From 9905fec71117e703a9e9e9cc868610668dda3d6e Mon Sep 17 00:00:00 2001 From: Guillaume Fieni Date: Wed, 27 Nov 2024 12:13:44 +0100 Subject: [PATCH] refactor: Fix ruff `unsorted-dunder-all` warnings --- src/smartwatts/actor/__init__.py | 4 ++-- src/smartwatts/model/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/smartwatts/actor/__init__.py b/src/smartwatts/actor/__init__.py index 7a26667..ed54079 100644 --- a/src/smartwatts/actor/__init__.py +++ b/src/smartwatts/actor/__init__.py @@ -35,8 +35,8 @@ __all__ = [ 'SmartWattsFormulaActor', - 'SmartWattsFormulaState', + 'SmartWattsFormulaActorFactory', 'SmartWattsFormulaConfig', 'SmartWattsFormulaScope', - 'SmartWattsFormulaActorFactory' + 'SmartWattsFormulaState' ] diff --git a/src/smartwatts/model/__init__.py b/src/smartwatts/model/__init__.py index 7daf427..b3f1570 100644 --- a/src/smartwatts/model/__init__.py +++ b/src/smartwatts/model/__init__.py @@ -36,8 +36,8 @@ __all__ = [ 'CPUTopology', - 'ReportHistory', 'ErrorHistory', + 'FrequencyLayer', 'PowerModel', - 'FrequencyLayer' + 'ReportHistory' ]