From b7564057f7676e7bfa25215dc715166b5dc60047 Mon Sep 17 00:00:00 2001 From: Tzu-ping Chung Date: Tue, 6 Nov 2018 16:13:39 +0900 Subject: [PATCH] Format --- pipenv/vendor/vistir/path.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pipenv/vendor/vistir/path.py b/pipenv/vendor/vistir/path.py index ba008159..b1236884 100644 --- a/pipenv/vendor/vistir/path.py +++ b/pipenv/vendor/vistir/path.py @@ -8,7 +8,6 @@ import os import posixpath import shutil import stat -import sys import warnings import six @@ -206,9 +205,8 @@ def mkdir_p(newdir, mode=0o777): target = os.path.join(head, tail) if os.path.exists(target) and os.path.isfile(target): raise OSError( - "A file with the same name as the desired dir, '{0}', already exists.".format( - to_text(newdir, encoding="utf-8") - ) + "A file with the same name as the desired dir, '{0}', " + "already exists.".format(to_text(newdir, encoding="utf-8")) ) os.makedirs(os.path.join(head, tail), mode)