[util] PEP8 fixes in util/vendor.py

No functional change, but no longer triggers flake8 errors.

Signed-off-by: Rupert Swarbrick <rswarbrick@lowrisc.org>
diff --git a/util/vendor.py b/util/vendor.py
index e2fb818..3bb8c56 100755
--- a/util/vendor.py
+++ b/util/vendor.py
@@ -173,7 +173,7 @@
 
 
 def refresh_patches(desc):
-    if not 'patch_repo' in desc:
+    if 'patch_repo' not in desc:
         log.fatal('Unable to refresh patches, patch_repo not set in config.')
         sys.exit(1)
 
@@ -273,7 +273,7 @@
                        check=True,
                        universal_newlines=True,
                        input=commit_msg)
-    except subprocess.CalledProcessError as e:
+    except subprocess.CalledProcessError:
         log.warning("Unable to create commit. Are there no changes?")
 
 
@@ -352,7 +352,6 @@
         raise SystemExit(sys.exc_info()[1])
     desc['_base_dir'] = vendor_file_base_dir
 
-
     desc_file_stem = desc_file_path.name.rsplit('.', 2)[0]
     lock_file_path = desc_file_path.with_name(desc_file_stem + '.lock.hjson')