From 528100e85da9334d9baa95543f09c67d48437f32 Mon Sep 17 00:00:00 2001 From: Steven Daniele Date: Wed, 18 Sep 2024 09:10:52 -0400 Subject: [PATCH] lint: move imports from the same module onto one line --- salt/transport/base.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/salt/transport/base.py b/salt/transport/base.py index 08c8494d0315..e2e185293e45 100644 --- a/salt/transport/base.py +++ b/salt/transport/base.py @@ -4,8 +4,7 @@ import ssl import traceback import warnings -from abc import ABC -from abc import abstractmethod +from abc import ABC, abstractmethod import salt.utils.stringutils