From bc12c882ae6f37ea55e5822125cea0caa0f341af Mon Sep 17 00:00:00 2001 From: Tai Sakuma Date: Wed, 25 Sep 2024 15:43:51 -0400 Subject: [PATCH] Sort imports as nextline packages as first party --- src/nextline_alert/emitter.py | 1 + src/nextline_alert/plugin.py | 1 + tests/test_emitter.py | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/nextline_alert/emitter.py b/src/nextline_alert/emitter.py index 580814a..8f8a16d 100644 --- a/src/nextline_alert/emitter.py +++ b/src/nextline_alert/emitter.py @@ -1,6 +1,7 @@ from logging import getLogger import httpx + from nextline.plugin.spec import Context, hookimpl diff --git a/src/nextline_alert/plugin.py b/src/nextline_alert/plugin.py index 9e63ae0..d3cbf80 100644 --- a/src/nextline_alert/plugin.py +++ b/src/nextline_alert/plugin.py @@ -5,6 +5,7 @@ from apluggy import asynccontextmanager from dynaconf import Dynaconf, Validator + from nextline import Nextline from nextlinegraphql.hook import spec diff --git a/tests/test_emitter.py b/tests/test_emitter.py index 84d374a..1634e30 100644 --- a/tests/test_emitter.py +++ b/tests/test_emitter.py @@ -4,8 +4,8 @@ import pytest import respx -from nextline import Nextline +from nextline import Nextline from nextline_alert.emitter import Emitter