comparison Plugins/DicomWeb/Run.py @ 563:be69d6d8260c

fix for python2
author Alain Mazy <am@osimis.io>
date Thu, 29 Jun 2023 15:24:54 +0200
parents a6fb40c2b722
children 28fef24147fa
comparison
equal deleted inserted replaced
562:a6fb40c2b722 563:be69d6d8260c
41 import re 41 import re
42 import sys 42 import sys
43 import unittest 43 import unittest
44 import xml.dom.minidom 44 import xml.dom.minidom
45 from PIL import ImageChops 45 from PIL import ImageChops
46 46 from io import BytesIO
47 from DicomWeb import * 47 from DicomWeb import *
48 48
49 sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'Tests')) 49 sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'Tests'))
50 from Toolbox import * 50 from Toolbox import *
51 51