From 2ec3b378ec2f31f28151901d60b40f3946774742 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 22 Dec 2023 15:38:59 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- pvconsumer/pv_systems.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pvconsumer/pv_systems.py b/pvconsumer/pv_systems.py index 6805ee6..f9f6964 100644 --- a/pvconsumer/pv_systems.py +++ b/pvconsumer/pv_systems.py @@ -5,15 +5,16 @@ from typing import List, Optional import pandas as pd -import pvconsumer -from pvconsumer.solar_sheffield_passiv import get_all_systems_from_solar_sheffield -from pvconsumer.utils import pv_output, solar_sheffield_passiv from pvoutput import PVOutput from pvsite_datamodel.read import get_all_sites from pvsite_datamodel.sqlmodels import GenerationSQL, SiteSQL from sqlalchemy import func from sqlalchemy.orm import Session +import pvconsumer +from pvconsumer.solar_sheffield_passiv import get_all_systems_from_solar_sheffield +from pvconsumer.utils import pv_output, solar_sheffield_passiv + # from pvconsumer.utils import df_to_list_pv_system, list_pv_system_to_df logger = logging.getLogger(__name__)