Skip to content

Commit

Permalink
ruff format
Browse files Browse the repository at this point in the history
  • Loading branch information
janosh committed Mar 15, 2024
1 parent 97e676b commit 69a34a7
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions matcalc/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Define basic API."""

from __future__ import annotations

import abc
Expand Down
1 change: 1 addition & 0 deletions matcalc/neb.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""NEB calculations."""

from __future__ import annotations

import os
Expand Down
1 change: 1 addition & 0 deletions matcalc/relaxation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Relaxation properties."""

from __future__ import annotations

import contextlib
Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"session". In the event that future tests are written that modifies the fixtures, these can be set to the default scope
of "function".
"""

from __future__ import annotations

from typing import TYPE_CHECKING
Expand Down
1 change: 1 addition & 0 deletions tests/test_elasticity.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for ElasticCalc class"""

from __future__ import annotations

from typing import TYPE_CHECKING
Expand Down
1 change: 1 addition & 0 deletions tests/test_eos.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for PhononCalc class"""

from __future__ import annotations

from typing import TYPE_CHECKING
Expand Down
1 change: 1 addition & 0 deletions tests/test_phonon.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for PhononCalc class"""

from __future__ import annotations

from typing import TYPE_CHECKING
Expand Down

0 comments on commit 69a34a7

Please sign in to comment.