summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2022-05-18 08:07:19 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2022-05-18 08:15:17 +0800
commit43c00af7e542911cce638cfab49c6a6dc9349e55 (patch)
tree8ac0bc1540650cf3befff11735e1421de372fa92
parent41b0c3130b28bf311f4f35d3da52670572215ad9 (diff)
downloadgitpython-black-fmt.tar.gz
can flake be tamed?black-fmt
-rw-r--r--.flake82
-rw-r--r--git/objects/util.py2
-rw-r--r--git/types.py1
3 files changed, 4 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index e3d7917a..08001ffa 100644
--- a/.flake8
+++ b/.flake8
@@ -35,4 +35,4 @@ min-python-version = 3.7.0
# for `black` compatibility
max-line-length = 120
-extend-ignore = E203
+extend-ignore = E203,W503
diff --git a/git/objects/util.py b/git/objects/util.py
index fad00001..636a5831 100644
--- a/git/objects/util.py
+++ b/git/objects/util.py
@@ -4,6 +4,8 @@
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
"""Module for general utility functions"""
+# flake8: noqa F401
+
from abc import ABC, abstractmethod
import warnings
diff --git a/git/types.py b/git/types.py
index 7a25688b..a4e839ba 100644
--- a/git/types.py
+++ b/git/types.py
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
+# flake8: noqa
import os
import sys