mirror of
https://github.com/docker/docs.git
synced 2026-03-30 07:48:52 +07:00
7 lines
118 B
Python
7 lines
118 B
Python
import sys
|
|
|
|
if sys.version_info >= (2, 7):
|
|
import unittest # NOQA
|
|
else:
|
|
import unittest2 as unittest # NOQA
|