Skip to content

Commit 9b3b18f

Browse files
committed
Remove six requirement
1 parent c90f449 commit 9b3b18f

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

regexlint/cmdline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import logging
2121
import itertools
2222
import multiprocessing
23-
from six import StringIO
23+
from io import StringIO
2424

2525
from pygments.lexer import RegexLexer, bygroups, words
2626
from pygments.token import Token

requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
Pygments
2-
six

tests/test_indicator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
import re
1717
import unittest
18-
from six import StringIO
18+
from io import StringIO
1919

2020
from regexlint.indicator import *
2121

0 commit comments

Comments
 (0)