File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11__program__ = "DeepQt"
2- __version__ = "1.1.5 "
2+ __version__ = "1.1.6 "
33__description__ = "DeepL API front-end using Qt."
Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ def get_key(self):
2929 If the api is supposed to be PRO, remove :fx from the key and vice versa.
3030 """
3131 key = self .lineEdit_api_key .text ().strip ()
32+ # Don't try to fix an empty key.
33+ if key == "" :
34+ return key
35+
3236 if self .comboBox_api_type .currentIndex () == 1 :
3337 key = re .sub (":fx$" , "" , key )
3438 else :
Original file line number Diff line number Diff line change 11[metadata]
22name = deepqt
3- version = 1.1.5
3+ version = 1.1.6
44description = Harness the power of the DeepL API with this friendly user interface.
55long_description = file: README.md
66long_description_content_type = text/markdown; charset=UTF-8; variant=GFM
You can’t perform that action at this time.
0 commit comments