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

Merged
merged 2 commits into from
Jan 30, 2024
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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:
args: ["--fix=no"]

- repo: https://github.com/psf/black-pre-commit-mirror
rev: 23.12.1
rev: 24.1.1
hooks:
- id: black

Expand Down
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Nox sessions."""

import os
import shlex
import shutil
Expand Down
1 change: 1 addition & 0 deletions src/py21cmemu/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""User-facing configuration for py21cmEMU."""

from __future__ import annotations

import logging
Expand Down
1 change: 1 addition & 0 deletions src/py21cmemu/emulator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Module that interacts with the Emulator Tensorflow model."""

from __future__ import annotations

import logging
Expand Down
1 change: 1 addition & 0 deletions src/py21cmemu/get_emulator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Download and install the emulator data."""

from __future__ import annotations

import logging
Expand Down
1 change: 1 addition & 0 deletions src/py21cmemu/inputs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Module containing functionality for handling emulator inputs."""

from __future__ import annotations

from typing import Dict
Expand Down
1 change: 1 addition & 0 deletions src/py21cmemu/outputs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Module whose functionality is to organise the emulator output."""

from __future__ import annotations

import dataclasses as dc
Expand Down
1 change: 1 addition & 0 deletions src/py21cmemu/properties.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""A module definining the static properties of the Emulator."""

from __future__ import annotations

from pathlib import Path
Expand Down
1 change: 1 addition & 0 deletions tests/test_main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test cases for the __main__ module."""

import shutil

import numpy as np
Expand Down
Loading