From 2421a9bf87d179df8ba7c0afa2666c3257dc6c7f Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sun, 6 Jul 2025 12:19:42 -0400 Subject: [PATCH] Updated Development_Contribution (markdown) --- Development_Contribution.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Development_Contribution.md b/Development_Contribution.md index aa7ace4..ed990f9 100644 --- a/Development_Contribution.md +++ b/Development_Contribution.md @@ -37,8 +37,8 @@ It basically boils down to this: ```python # plugins/foorbar.py might look like: -from .NotifyBase import NotifyBase -from ..AppriseLocale import gettext_lazy as _ +from .base import NotifyBase +from ..locale import gettext_lazy as _ class NotifyFooBar(NotifyBase): # Define a human readable description of our object