From b63e466b36c65a430cd3bba1f9a0abce5f56edb5 Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Mon, 13 Jan 2025 15:59:52 +0100 Subject: [PATCH] style: move import to original location --- pelican/plugins/share_post/share_post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pelican/plugins/share_post/share_post.py b/pelican/plugins/share_post/share_post.py index 2cbd815..6172904 100644 --- a/pelican/plugins/share_post/share_post.py +++ b/pelican/plugins/share_post/share_post.py @@ -13,9 +13,9 @@ This plugin adds social share URLs to each article. from urllib.parse import quote from bs4 import BeautifulSoup -from pelican.generators import ArticlesGenerator, PagesGenerator from pelican import contents, signals +from pelican.generators import ArticlesGenerator, PagesGenerator _create_link_functions = []