Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ae1d168

Browse files
committed
Fix the build in python 2.6: speeling error
1 parent 254655e commit ae1d168

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

pre_commit/languages/python.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,5 @@ def install_environment():
3030

3131

3232
def run_hook(hook, file_args):
33-
# TODO: batch filenames
3433
with in_env() as env:
3534
return helpers.run_hook(env, hook, file_args)

pre_commit/ordereddict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
try:
66
from collections import OrderedDict
77
except ImportError:
8-
from orderddict import OrderedDict
8+
from ordereddict import OrderedDict
99

1010
__all__ = (OrderedDict.__name__,)

0 commit comments

Comments
 (0)