From 24075deef5fa998ced091b05b54699f10a3776b5 Mon Sep 17 00:00:00 2001 From: Michael Howitz Date: Tue, 23 Nov 2021 08:24:30 +0100 Subject: Fix tests on Python 3.10 + lint. --- src/zope/security/checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/zope/security/checker.py') diff --git a/src/zope/security/checker.py b/src/zope/security/checker.py index 67723e8..fe570d1 100644 --- a/src/zope/security/checker.py +++ b/src/zope/security/checker.py @@ -135,7 +135,7 @@ def ProxyFactory(object, checker=None): directlyProvides(ProxyFactory, ISecurityProxyFactory) # This import represents part of the API for the proxy module -from . import proxy +from . import proxy # noqa: E402 module level import not at top proxy.ProxyFactory = ProxyFactory -- cgit v1.2.1