Skip to content

Commit

Permalink
Merge pull request #160 from 21cmfast/pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
[pre-commit.ci] pre-commit autoupdate
  • Loading branch information
steven-murray authored Jan 30, 2024
2 parents df021eb + 5f2c02d commit de5c28a
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 1 deletion.
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

0 comments on commit de5c28a

Please sign in to comment.