X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/f2ea461e9e9fa5c47bb61fd72d512c748928badc..abe57e3d92727f1b26c717fad3978159b987fe79:/src/black/rusty.py?ds=sidebyside diff --git a/src/black/rusty.py b/src/black/rusty.py index 822e3d7..ebd4c05 100644 --- a/src/black/rusty.py +++ b/src/black/rusty.py @@ -2,8 +2,8 @@ See https://doc.rust-lang.org/book/ch09-00-error-handling.html. """ -from typing import Generic, TypeVar, Union +from typing import Generic, TypeVar, Union T = TypeVar("T") E = TypeVar("E", bound=Exception)