mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
Fix the build in python 2.6: speeling error
This commit is contained in:
parent
254655e2fd
commit
ae1d1681b2
2 changed files with 1 additions and 2 deletions
|
|
@ -30,6 +30,5 @@ def install_environment():
|
||||||
|
|
||||||
|
|
||||||
def run_hook(hook, file_args):
|
def run_hook(hook, file_args):
|
||||||
# TODO: batch filenames
|
|
||||||
with in_env() as env:
|
with in_env() as env:
|
||||||
return helpers.run_hook(env, hook, file_args)
|
return helpers.run_hook(env, hook, file_args)
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,6 @@ from __future__ import absolute_import
|
||||||
try:
|
try:
|
||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
except ImportError:
|
except ImportError:
|
||||||
from orderddict import OrderedDict
|
from ordereddict import OrderedDict
|
||||||
|
|
||||||
__all__ = (OrderedDict.__name__,)
|
__all__ = (OrderedDict.__name__,)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue