From 3e717741486892fdeff4e192bef1d09b604e0a4c Mon Sep 17 00:00:00 2001 From: Joshua Fehler Date: Tue, 27 Feb 2024 09:04:23 -0500 Subject: [PATCH] fixup --- splinter/abc/cookie_manager.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/splinter/abc/cookie_manager.py b/splinter/abc/cookie_manager.py index ea80ab803..2c1b4733f 100644 --- a/splinter/abc/cookie_manager.py +++ b/splinter/abc/cookie_manager.py @@ -1,7 +1,8 @@ # Copyright 2012 splinter authors. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -from abc import ABC, abstractmethod +from abc import ABC +from abc import abstractmethod class CookieManagerAPI(ABC):