图片解析应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
346 B

  1. # -*- coding: utf-8 -*-
  2. # Copyright (c) 2021, Brandon Nielsen
  3. # All rights reserved.
  4. #
  5. # This software may be modified and distributed under the terms
  6. # of the BSD license. See the LICENSE file for details.
  7. import sys
  8. PY2 = sys.version_info[0] == 2
  9. if PY2:
  10. import mock # pylint: disable=import-error
  11. else:
  12. from unittest import mock