Skip to content

Commit

Permalink
pre-commit auto-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Apr 1, 2024
1 parent a6e0cdb commit 523d5a5
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions pymatgen/analysis/diffusion/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Package for diffusion analysis.
"""

from __future__ import annotations

__author__ = "Materials Virtual Lab"
Expand Down
1 change: 1 addition & 0 deletions pymatgen/analysis/diffusion/aimd/clustering.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
adaption for periodic boundary conditions. This can be used, for example, to
determine likely atomic positions from MD trajectories.
"""

from __future__ import annotations

import random
Expand Down
3 changes: 2 additions & 1 deletion pymatgen/analysis/diffusion/aimd/pathway.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
# Distributed under the terms of the BSD License.

"""
Algorithms for diffusion pathway analysis
Algorithms for diffusion pathway analysis
"""

from __future__ import annotations

import itertools
Expand Down
1 change: 1 addition & 0 deletions pymatgen/analysis/diffusion/aimd/rdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""
RDF implementation.
"""

from __future__ import annotations

from collections import Counter
Expand Down
1 change: 1 addition & 0 deletions pymatgen/analysis/diffusion/aimd/van_hove.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""
Van Hove analysis for correlations.
"""

from __future__ import annotations

import itertools
Expand Down
1 change: 1 addition & 0 deletions pymatgen/analysis/diffusion/analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
Li10GeP2S12 Lithium Super Ionic Conductor Material. Chemistry of Materials,
24(1), 15-17. doi:10.1021/cm203303y
"""

from __future__ import annotations

import multiprocessing
Expand Down
1 change: 1 addition & 0 deletions pymatgen/analysis/diffusion/neb/full_path_mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"""
Migraiton Graph Analysis
"""

from __future__ import annotations

__author__ = "Jimmy Shen"
Expand Down
1 change: 1 addition & 0 deletions pymatgen/analysis/diffusion/neb/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""
Generate input fields for NEB calculations.
"""

from __future__ import annotations

import copy
Expand Down
1 change: 1 addition & 0 deletions pymatgen/analysis/diffusion/neb/pathfinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""
Algorithms for NEB migration path analysis.
"""

from __future__ import annotations

import itertools
Expand Down
1 change: 1 addition & 0 deletions pymatgen/analysis/diffusion/neb/periodic_dijkstra.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"""
Dijkstra's path search on a graph where the nodes are on a periodic graph
"""

from __future__ import annotations

__author__ = "Jimmy Shen"
Expand Down
1 change: 1 addition & 0 deletions pymatgen/analysis/diffusion/utils/edge_data_from_sc.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""
Function to add edge data to MigrationGraph through 2 SC structures
"""

from __future__ import annotations

__author__ = "Haoming Li"
Expand Down
1 change: 1 addition & 0 deletions pymatgen/analysis/diffusion/utils/maggma.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
cathode materials The functions are isolated from the rest of the package so
that the rest of the package will not depend on Maggma
"""

from __future__ import annotations

__author__ = "Jimmy Shen"
Expand Down
1 change: 1 addition & 0 deletions pymatgen/analysis/diffusion/utils/parse_entries.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""
Functions for combining many ComputedEntry objects into MigrationGraph objects.
"""

from __future__ import annotations

import logging
Expand Down
1 change: 1 addition & 0 deletions pymatgen/analysis/diffusion/utils/supercells.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"""
Functions for creating supercells for NEB calculations
"""

from __future__ import annotations

import logging
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Setup file for pymatgen.analysis.diffusion."""

from __future__ import annotations

import os
Expand Down

0 comments on commit 523d5a5

Please sign in to comment.