Skip to content

Commit 43c00af

Browse files
committed
can flake be tamed?
1 parent 41b0c31 commit 43c00af

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

‎.flake8

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ min-python-version = 3.7.0
3535

3636
# for `black` compatibility
3737
max-line-length = 120
38-
extend-ignore = E203
38+
extend-ignore = E203,W503

‎git/objects/util.py

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
# This module is part of GitPython and is released under
55
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
66
"""Module for general utility functions"""
7+
# flake8: noqa F401
8+
79

810
from abc import ABC, abstractmethod
911
import warnings

‎git/types.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# -*- coding: utf-8 -*-
22
# This module is part of GitPython and is released under
33
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# flake8: noqa
45

56
import os
67
import sys

0 commit comments

Comments
 (0)