Skip to content

Commit

Permalink
Format black
Browse files Browse the repository at this point in the history
  • Loading branch information
pyiron-runner committed Jan 23, 2024
1 parent d3a0978 commit fd054b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions pyiron_contrib/RDM/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@
from pyiron_base import Project

from pyiron_contrib.generic.storage_interface_toolkit import StorageInterfaceFactory

Project.register_tools("storage_interface", StorageInterfaceFactory)
6 changes: 4 additions & 2 deletions pyiron_contrib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@

class Project(BaseProject):
def __init__(self, *args, **kwargs):
warnings.warn("Importing Project from pyiron_contrib is deprecated. "
"Import from appropriate pyiron module (e.g. pyiron) instead.")
warnings.warn(
"Importing Project from pyiron_contrib is deprecated. "
"Import from appropriate pyiron module (e.g. pyiron) instead."
)
super().__init__(*args, **kwargs)


Expand Down

0 comments on commit fd054b1

Please sign in to comment.