From 96bb1c2ae28333046e2a81f9dfcc1e21aa7624d2 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Thu, 8 Sep 2022 17:41:11 -0400 Subject: [PATCH] Don't import deprecated module --- tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks.py b/tasks.py index b15ee74..b3358e5 100644 --- a/tasks.py +++ b/tasks.py @@ -1,9 +1,9 @@ from invoke import Collection -from invocations import docs, travis, checks +from invocations import docs, checks from invocations.packaging import release -ns = Collection(release, docs, travis, checks.blacken) +ns = Collection(release, docs, checks.blacken) ns.configure( { "packaging": { -- 2.39.0.windows.2