Skip to content

Commit 74ad4b3

Browse files
authored
Merge pull request #110 from maxmind/greg/run-black
Run new black version against repo
2 parents 5a8a46c + bd2b75f commit 74ad4b3

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# We should probably migrate most of setup.cfg here
2+
3+
[tool.black]
4+
# src is showing up in our GitHub linting builds. It seems to
5+
# contain deps.
6+
extend-exclude = '^/src/'

tests/decoder_test.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ def validate_type_decoding(self, type, tests):
191191
self.check_decoding(type, input, expected)
192192

193193
def check_decoding(self, type, input, expected, name=None):
194-
195194
name = name or expected
196195
db = mmap.mmap(-1, len(input))
197196
db.write(input)

0 commit comments

Comments
 (0)