diff options
author | Bernát Gábor <gaborjbernat@gmail.com> | 2023-04-19 16:05:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-19 16:05:21 -0700 |
commit | 04af5026d8eff9ab34cd6f4a47e2f9de4f10a25c (patch) | |
tree | 7a7beb20e885285b6838f75db5c647a4d20317fc /src/virtualenv/util/error.py | |
parent | cdd7eb129e5a31b5ff6779f00bc7621908962626 (diff) | |
download | virtualenv-04af5026d8eff9ab34cd6f4a47e2f9de4f10a25c.tar.gz |
Drop Python 2 support (#2548)
Diffstat (limited to 'src/virtualenv/util/error.py')
-rw-r--r-- | src/virtualenv/util/error.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/virtualenv/util/error.py b/src/virtualenv/util/error.py index 945a25e..5862226 100644 --- a/src/virtualenv/util/error.py +++ b/src/virtualenv/util/error.py @@ -1,6 +1,9 @@ """Errors""" +from __future__ import annotations + + class ProcessCallFailed(RuntimeError): """Failed a process call""" |