Skip to content

Run everything through 'black' #1442

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
May 18, 2022
Prev Previous commit
can flake be tamed?
  • Loading branch information
Byron committed May 18, 2022
commit 43c00af7e542911cce638cfab49c6a6dc9349e55
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ min-python-version = 3.7.0

# for `black` compatibility
max-line-length = 120
extend-ignore = E203
extend-ignore = E203,W503
2 changes: 2 additions & 0 deletions git/objects/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions git/types.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down