Skip to content

Commit c9404e2

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f3048a8 commit c9404e2

File tree

9 files changed

+13
-10
lines changed

9 files changed

+13
-10
lines changed

pvconsumer/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
""" Pv Consumer"""
1+
"""Pv Consumer"""
2+
23
__version__ = "2.2.1"

pvconsumer/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Application for getting live pv data
1+
"""Application for getting live pv data
22
33
1. Load Pv system ids from local csv file
44
2. For each site, find the most recent data in a database

pvconsumer/pv_systems.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
""" PV system functions """
1+
"""PV system functions"""
2+
23
import logging
34
import os
45
from datetime import datetime, timedelta

pvconsumer/save.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
""" Save to database functions"""
1+
"""Save to database functions"""
2+
23
import logging
34

45
import pandas as pd

pvconsumer/solar_sheffield_passiv.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
""" Function to get data from Solar Shieffield about Pasiv systems"""
2-
1+
"""Function to get data from Solar Shieffield about Pasiv systems"""
32

43
import logging
54
import os

pvconsumer/utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
""" Utils functions """
1+
"""Utils functions"""
2+
23
import logging
34
from datetime import datetime, timedelta, timezone
45

scripts/get_pv_systems.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Get list of pv systems data for live
1+
"""Get list of pv systems data for live
22
33
1. load data from gcp
44
2. save systems ids to a txt file

scripts/make_data_ss_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Make Solar shieffled passiv data file"""
1+
"""Make Solar shieffled passiv data file"""
22

33
from pvconsumer.solar_sheffield_passiv import get_all_latest_pv_yield_from_solar_sheffield
44

scripts/update_tilt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" We noticed that for lots of the passive sites, the tilt was wrong in the database."""
1+
"""We noticed that for lots of the passive sites, the tilt was wrong in the database."""
22

33
import os
44

0 commit comments

Comments
 (0)