From c2c794b1430584dc0c2370dc95425c2f0968312d Mon Sep 17 00:00:00 2001 From: Francis Charette Migneault Date: Fri, 6 Oct 2023 00:26:09 -0400 Subject: [PATCH] fix import linting --- weaver/notify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weaver/notify.py b/weaver/notify.py index 5c0601fc0..f2e59fb9d 100644 --- a/weaver/notify.py +++ b/weaver/notify.py @@ -3,12 +3,12 @@ import os import secrets import smtplib +from typing import TYPE_CHECKING + from cryptography.fernet import Fernet from cryptography.hazmat.backends import default_backend from cryptography.hazmat.primitives import hashes from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC -from typing import TYPE_CHECKING - from mako.template import Template from pyramid.settings import asbool