File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
2- '''
2+ """
33Copyright (C) 2012-2022 Diego Torres Milano
44Created on oct 6, 2014
55
1717
1818@author: Diego Torres Milano
1919
20- '''
20+ """
2121from __future__ import print_function
2222
2323import io
2424import random
2525import re
2626import time
27- from tkinter .filedialog import asksaveasfilename
2827from typing import Any , Optional
2928
3029import numpy
3736from com .dtmilano .android .keyevent import KEY_EVENT
3837from com .dtmilano .android .viewclient import ViewClient , View , VERSION_SDK_PROPERTY
3938
40- __version__ = '21.17.2 '
39+ __version__ = '21.17.3 '
4140
4241import sys
4342import threading
4746import platform
4847from pkg_resources import Requirement , resource_filename
4948
49+ # noinspection PyBroadException
5050try :
5151 import PIL
5252 from PIL import Image
5555except :
5656 PIL_AVAILABLE = False
5757
58+ # noinspection PyBroadException
5859try :
5960 from PIL import ImageTk
6061 import tkinter
6465 import tkinter .scrolledtext
6566 import tkinter .ttk
6667 from tkinter .constants import DISABLED , NORMAL
68+ from tkinter .filedialog import asksaveasfilename
6769
6870 TKINTER_AVAILABLE = True
6971except :
7577 import ScrolledText
7678 import ttk
7779 from Tkconstants import DISABLED , NORMAL
80+ from tkinter .filedialog import asksaveasfilename
7881
7982 TKINTER_AVAILABLE = True
8083 except :
You can’t perform that action at this time.
0 commit comments