mirror of
https://github.com/docker/compose.git
synced 2026-09-06 02:19:36 +00:00
8 lines
139 B
Python
8 lines
139 B
Python
import sys
|
|
|
|
import mock # noqa
|
|
|
|
if sys.version_info >= (2, 7):
|
|
import unittest # NOQA
|
|
else:
|
|
import unittest2 as unittest # NOQA
|