summaryrefslogtreecommitdiff
path: root/src/virtualenv/util
diff options
context:
space:
mode:
authorBernát Gábor <gaborjbernat@gmail.com>2022-12-29 20:25:07 -0800
committerGitHub <noreply@github.com>2022-12-29 20:25:07 -0800
commite7fa1c2b4bbbe7495077e5f2146dca9c369b08d7 (patch)
tree4262eb520549529a7f5275e82fdf4cb4baf593aa /src/virtualenv/util
parent95a57f2ab796c22ab8c0644ba6f9334fe5d5ca67 (diff)
downloadvirtualenv-e7fa1c2b4bbbe7495077e5f2146dca9c369b08d7.tar.gz
Move to hatchling, drop 3.6 support (#2474)
Diffstat (limited to 'src/virtualenv/util')
-rw-r--r--src/virtualenv/util/lock.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/virtualenv/util/lock.py b/src/virtualenv/util/lock.py
index 512d1c9..8d7215e 100644
--- a/src/virtualenv/util/lock.py
+++ b/src/virtualenv/util/lock.py
@@ -58,17 +58,17 @@ class PathLockBase(metaclass=ABCMeta):
raise NotImplementedError
@abstractmethod
- def __exit__(self, exc_type, exc_val, exc_tb): # noqa: U100
+ def __exit__(self, exc_type, exc_val, exc_tb):
raise NotImplementedError
@abstractmethod
@contextmanager
- def lock_for_key(self, name, no_block=False): # noqa: U100
+ def lock_for_key(self, name, no_block=False):
raise NotImplementedError
@abstractmethod
@contextmanager
- def non_reentrant_lock_for_key(self, name): # noqa: U100
+ def non_reentrant_lock_for_key(self, name):
raise NotImplementedError