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 #215

Merged
merged 2 commits into from
Feb 7, 2025
Merged
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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ repos:

- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: 'v0.9.3'
rev: 'v0.9.4'
hooks:
- id: ruff
args: ["--fix"]

- repo: https://github.com/psf/black
rev: 24.10.0
rev: 25.1.0
hooks:
- id: black

Expand Down
3 changes: 1 addition & 2 deletions pyremo/cal.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""this module handles absolute calendars that occur in REMO datasets.
"""
"""this module handles absolute calendars that occur in REMO datasets."""

import datetime as dt
import math
Expand Down
3 changes: 1 addition & 2 deletions pyremo/core/exp.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Module for working and parsing Remo output files.
"""
"""Module for working and parsing Remo output files."""

import os
from pathlib import Path
Expand Down
3 changes: 1 addition & 2 deletions pyremo/physics/constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# flake8: noqa
"""collection of common Remo physics constants.
"""
"""collection of common Remo physics constants."""

# descritions from REMO
#!C**
Expand Down
3 changes: 1 addition & 2 deletions pyremo/physics/core.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# flake8: noqa
"""physics module that contains some common Remo physics functions.
"""
"""physics module that contains some common Remo physics functions."""

import numpy as np
import xarray as xr
Expand Down
3 changes: 1 addition & 2 deletions pyremo/prsint/_defaults.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""default values for the command line interface
"""
"""default values for the command line interface"""

# RELHUM not yet available
variables = ["T", "FI", "U", "V", "QD", "QW"]
Expand Down
3 changes: 1 addition & 2 deletions tests/test_tutorial.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Test loading of tutorial data
"""
"""Test loading of tutorial data"""

import pyremo as pr

Expand Down
Loading