Skip to content

Commit

Permalink
Fix lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shyue Ping Ong committed Aug 7, 2022
1 parent 4894a10 commit 6dc69fb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
pymatgen.analysis.diffusion.tests.test\_pathfinder module
=========================================================

.. automodule:: pymatgen.analysis.diffusion.tests.test_pathfinder
:members:
:undoc-members:
:show-inheritance:
6 changes: 3 additions & 3 deletions pymatgen/analysis/diffusion/aimd/rdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
from multiprocessing import cpu_count
from typing import Dict, List, Tuple, Union

import numpy as np
from joblib import Parallel, delayed
from pymatgen.core import Structure
from pymatgen.util.plotting import pretty_plot
import numpy as np
from scipy.ndimage import gaussian_filter1d
from scipy.signal import find_peaks
from scipy.stats import norm
from pymatgen.core import Structure
from pymatgen.util.plotting import pretty_plot


class RadialDistributionFunction:
Expand Down
4 changes: 2 additions & 2 deletions pymatgen/analysis/diffusion/aimd/van_hove.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
import matplotlib.pyplot as plt
import numpy as np
import pandas as pds
from scipy.stats import norm

from pymatgen.core import Structure
from pymatgen.util.plotting import pretty_plot
from pymatgen.util.typing import ArrayLike
from scipy.stats import norm

from pymatgen.analysis.diffusion.analyzer import DiffusionAnalyzer

from .rdf import RadialDistributionFunction
Expand Down

0 comments on commit 6dc69fb

Please sign in to comment.