From 18e5aaec4dec8418d0557f6226588f1450c27249 Mon Sep 17 00:00:00 2001 From: Benjamin Berman Date: Tue, 15 Aug 2023 17:40:28 -0700 Subject: [PATCH] custom nodes now has an __init__.py correctly --- .gitignore | 4 ++-- custom_nodes/__init__.py | 0 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 custom_nodes/__init__.py diff --git a/.gitignore b/.gitignore index adc66db68..ffb9b1177 100644 --- a/.gitignore +++ b/.gitignore @@ -4,9 +4,9 @@ !/input/example.png /[Mm]odels/ /[Tt]emp/ -/[Cc]ustom_nodes/ +/[Cc]ustom_nodes/* +![Cc]ustom_nodes/__init__.py !/custom_nodes/example_node.py.example -!/custom_nodes/__init__.py /extra_model_paths.yaml /.vs .idea/ diff --git a/custom_nodes/__init__.py b/custom_nodes/__init__.py new file mode 100644 index 000000000..e69de29bb