Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #74

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ default_language_version:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v5.0.0
hooks:
# list of supported hooks: https://pre-commit.com/hooks.html
- id: trailing-whitespace
Expand All @@ -12,20 +12,20 @@ repos:
- id: detect-private-key

# python code formatting/linting
- repo: https://github.com/charliermarsh/ruff-pre-commit
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: "v0.0.253"
rev: "v0.8.6"
hooks:
- id: ruff
args: [--fix]
- repo: https://github.com/psf/black
rev: 22.6.0
rev: 24.10.0
hooks:
- id: black
args: [--line-length, "100"]
# yaml formatting
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.0.0-alpha.4
rev: v4.0.0-alpha.8
hooks:
- id: prettier
types: [yaml]
1 change: 1 addition & 0 deletions pvconsumer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
""" Pv Consumer"""

__version__ = "2.1.1"
1 change: 1 addition & 0 deletions pvconsumer/pv_systems.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" PV system functions """

import logging
import os
from datetime import datetime, timedelta
Expand Down
1 change: 1 addition & 0 deletions pvconsumer/save.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" Save to database functions"""

import logging

import pandas as pd
Expand Down
1 change: 0 additions & 1 deletion pvconsumer/solar_sheffield_passiv.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
""" Function to get data from Solar Shieffield about Pasiv systems"""


import logging
import os
from typing import List
Expand Down
1 change: 1 addition & 0 deletions pvconsumer/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" Utils functions """

import logging
from datetime import datetime, timedelta, timezone

Expand Down
Loading