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

Merged
merged 2 commits into from
Jan 31, 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 @@ -9,6 +9,6 @@ repos:
- id: debug-statements
- id: requirements-txt-fixer
- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.1.1
hooks:
- id: black
1 change: 1 addition & 0 deletions phaseshifts/gui/ImportDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""

from PyQt4 import QtGui, uic
import res_rc

Expand Down
1 change: 1 addition & 0 deletions phaseshifts/gui/SettingsDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""

import os
import sys
from time import gmtime, strftime
Expand Down
1 change: 1 addition & 0 deletions phaseshifts/lib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The subpackage is for library code, likely compiled from Fortran or C sources."""

from ._fortran_lib import (
is_module_importable,
compile_f2py_shared_library,
Expand Down
1 change: 1 addition & 0 deletions phaseshifts/lib/_fortran_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
compiled wrapped `libphsh` fortran shared library and adds the ability to crudely compile
on the fly (useful when installing this package from source distribution).
"""

import importlib
import os
import subprocess
Expand Down
1 change: 1 addition & 0 deletions test/test_atorb.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

Test Atorb - checks whether the Atorb class functions as expected
"""

import unittest, sys, os


Expand Down
1 change: 1 addition & 0 deletions test/test_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

Test Imports - checks whether key modules and extensions can be imported
"""

import sys, os
import unittest

Expand Down
Loading