X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/f2ea461e9e9fa5c47bb61fd72d512c748928badc..47676bf5939ae5c8e670d947917bc8af4732eab6:/src/black/rusty.py

diff --git a/src/black/rusty.py b/src/black/rusty.py
index 822e3d7..84a80b5 100644
--- a/src/black/rusty.py
+++ b/src/black/rusty.py
@@ -4,7 +4,6 @@ See https://doc.rust-lang.org/book/ch09-00-error-handling.html.
 """
 from typing import Generic, TypeVar, Union
 
-
 T = TypeVar("T")
 E = TypeVar("E", bound=Exception)