Skip to content

Commit

Permalink
Merge pull request #81 from pyiron/isort
Browse files Browse the repository at this point in the history
Use isort with black to restructure imports
  • Loading branch information
jan-janssen committed May 21, 2023
2 parents 5e245ca + 3ef9419 commit 2775530
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions pyfileindex/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
__version__ = "0.0.1"
__all__ = []

from .pyfileindex import PyFileIndex

from ._version import get_versions
from .pyfileindex import PyFileIndex

__version__ = get_versions()["version"]
del get_versions
3 changes: 2 additions & 1 deletion pyfileindex/pyfileindex.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os

import numpy as np
import pandas
import os

try:
from os import scandir
Expand Down

0 comments on commit 2775530

Please sign in to comment.