From 30fc7cb9c8d8722d85049acfcf4e73c188e8e6f1 Mon Sep 17 00:00:00 2001 From: Daniel K Lyons <dlyons@nrao.edu> Date: Fri, 9 Apr 2021 10:06:48 -0600 Subject: [PATCH] Remove the "from x import *" line that irritated Janet --- apps/cli/executables/delivery/delivery/deliverer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/cli/executables/delivery/delivery/deliverer.py b/apps/cli/executables/delivery/delivery/deliverer.py index 73cb3af36..06ee11017 100644 --- a/apps/cli/executables/delivery/delivery/deliverer.py +++ b/apps/cli/executables/delivery/delivery/deliverer.py @@ -5,7 +5,7 @@ # ------------------------------------------------------------------------- import pathlib -from .destinations.interfaces import * +from .destinations.interfaces import DestinationDecorator, DeliveryContextIF, Destination from .destinations.tar import TarArchiver from .destinations.local import LocalDestination from .destinations.checksum import ChecksumDecorator -- GitLab