mirror of
https://github.com/docker/compose.git
synced 2026-06-24 18:18:27 +00:00
6 lines
118 B
Python
6 lines
118 B
Python
import sys
|
|
|
|
if sys.version_info >= (2, 7):
|
|
import unittest # NOQA
|
|
else:
|
|
import unittest2 as unittest # NOQA
|