Skip to content

Commit

Permalink
many fixes to the inner project's __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
telamonian committed Jun 20, 2024
1 parent 8773725 commit be9f340
Showing 1 changed file with 11 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
"""Top-level package for {{ cookiecutter.project_name }}."""
"""Top-level package for {{cookiecutter.project_name}}."""

__author__ = """{{ cookiecutter.full_name }}"""
__email__ = '{{ cookiecutter.email }}'
__version__ = '{{ cookiecutter.version }}'
__all__ = [
"NODE_CLASS_MAPPINGS",
"NODE_DISPLAY_NAME_MAPPINGS",
]

import NODE_CLASS_MAPPINGS
import NODE_DISPLAY_NAME_MAPPINGS
__author__ = """{{cookiecutter.full_name}}"""
__email__ = "{{cookiecutter.email}}"
__version__ = "{{cookiecutter.version}}"

from .nodes import NODE_CLASS_MAPPINGS
from .nodes import NODE_DISPLAY_NAME_MAPPINGS

0 comments on commit be9f340

Please sign in to comment.