Skip to content

Commit

Permalink
remove six bits
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Jun 27, 2023
1 parent 145074f commit b7dafc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 2 additions & 4 deletions bench/test_simple.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import six

from multipledispatch import dispatch


Expand All @@ -14,6 +12,6 @@ def isint(x):


def test_simple():
for i in six.moves.xrange(100000):
for _ in range(100000):
assert isint(5)
assert not isint('a')
assert not isint("a")
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[flake8]
ignore= F811
max-line-length = 100

0 comments on commit b7dafc9

Please sign in to comment.