1 parent 41b0c31 commit 43c00afCopy full SHA for 43c00af
.flake8
@@ -35,4 +35,4 @@ min-python-version = 3.7.0
35
36
# for `black` compatibility
37
max-line-length = 120
38
-extend-ignore = E203
+extend-ignore = E203,W503
git/objects/util.py
@@ -4,6 +4,8 @@
4
# This module is part of GitPython and is released under
5
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
6
"""Module for general utility functions"""
7
+# flake8: noqa F401
8
+
9
10
from abc import ABC, abstractmethod
11
import warnings
git/types.py
@@ -1,6 +1,7 @@
1
# -*- coding: utf-8 -*-
2
3
+# flake8: noqa
import os
import sys
0 commit comments