From 12f51786d9528be6d6d51ebccd5fb4f133f1925e Mon Sep 17 00:00:00 2001 From: Harris Tzovanakis Date: Tue, 6 Feb 2024 08:33:17 +0100 Subject: [PATCH] lns: fix import --- .../src/providers/library_newsletter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library-Notification-Service/src/providers/library_newsletter.py b/Library-Notification-Service/src/providers/library_newsletter.py index 633884f..e9590ed 100644 --- a/Library-Notification-Service/src/providers/library_newsletter.py +++ b/Library-Notification-Service/src/providers/library_newsletter.py @@ -5,11 +5,12 @@ import click from ..api import ( + get_api_url, get_backoffice_latest_pids, get_results_from_pids, send_channel_request, ) -from ..utils import create_channel_message, get_api_url +from ..utils import create_channel_message @click.command()