eric6/WebBrowser/Sync/SyncFtpSettingsPage.py

changeset 7269
0c63ea7f94bd
parent 7229
53054eb5b15a
child 7360
9190402e4505
equal deleted inserted replaced
7268:a28338eaf694 7269:0c63ea7f94bd
63 """ 63 """
64 Public method to check the completeness of the page. 64 Public method to check the completeness of the page.
65 65
66 @return flag indicating completeness (boolean) 66 @return flag indicating completeness (boolean)
67 """ 67 """
68 return self.serverEdit.text() != "" and \ 68 return (
69 self.userNameEdit.text() != "" and \ 69 self.serverEdit.text() != "" and
70 self.passwordEdit.text() != "" and \ 70 self.userNameEdit.text() != "" and
71 self.passwordEdit.text() != "" and
71 self.pathEdit.text() != "" 72 self.pathEdit.text() != ""
73 )

eric ide

mercurial