mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
10 lines
233 B
Python
10 lines
233 B
Python
from __future__ import absolute_import
|
|
|
|
# This module serves only as a shim for OrderedDict
|
|
|
|
try:
|
|
from collections import OrderedDict
|
|
except ImportError:
|
|
from ordereddict import OrderedDict
|
|
|
|
__all__ = (OrderedDict.__name__,)
|