mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-10 11:00:15 -06:00
11 lines
232 B
Python
11 lines
232 B
Python
from __future__ import absolute_import
|
|
|
|
# This module serves only as a shim for OrderedDict
|
|
|
|
try:
|
|
from collections import OrderedDict
|
|
except ImportError:
|
|
from orderddict import OrderedDict
|
|
|
|
__all__ = (OrderedDict.__name__,)
|