Skip to content

Commit 220a86d

Browse files
author
KoleT
committed
Update author email and refactor __all__ in __init__.py.
1 parent aaa9562 commit 220a86d

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

__init__.py

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
"""Top-level package for lora-stacker-civitai-tags."""
2-
3-
__all__ = [
4-
"NODE_CLASS_MAPPINGS",
5-
"NODE_DISPLAY_NAME_MAPPINGS",
6-
7-
]
2+
from .src.my_custom_nodepack.nodes import NODE_CLASS_MAPPINGS
3+
from .src.my_custom_nodepack.nodes import NODE_DISPLAY_NAME_MAPPINGS
84

95
__author__ = "Lorastack Tag autoloader"
106
__email__ = "kole.tackney@gmail.com"
117
__version__ = "1.0.0"
128

13-
from .src.my_custom_nodepack.nodes import NODE_CLASS_MAPPINGS
14-
from .src.my_custom_nodepack.nodes import NODE_DISPLAY_NAME_MAPPINGS
15-
9+
__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS', 'CC_VERSION']
1610

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "lora-stacker-civitai-tags"
77
version = "1.0.0"
88
description = "Fetches CivitAI trainedWords (trigger tags) for a LoRA stack and returns them as a comma-separated string."
99
authors = [
10-
{name = "Lorastack Tag autoloader", email = "you@gmail.com"}
10+
{name = "Lorastack Tag autoloader", email = "kole.tackney@gmail.com"}
1111
]
1212
readme = "README.md"
1313
license = { file = "LICENSE" }
@@ -18,7 +18,6 @@ dependencies = [
1818
]
1919

2020

21-
2221
[project.optional-dependencies]
2322
dev = [
2423
"bump-my-version",

0 commit comments

Comments
 (0)