test coverage fix

pull/1354/head
Chris Caron 2025-06-29 21:32:22 -04:00
parent 29d58d7093
commit 456b9ae644
1 changed files with 7 additions and 1 deletions

View File

@ -34,7 +34,13 @@ from apprise import Apprise
from apprise.plugins.smpp import NotifySMPP
from apprise import NotifyType
from helpers import AppriseURLTester
import smpplib
try:
import smpplib
except ImportError:
# No problem; there is no smpplib support
pass
logging.disable(logging.CRITICAL)