src/eric7/MicroPython/WifiDialogs/WifiConnectionDialog.py

branch
mpy_network
changeset 9789
d8e0ab86ddca
parent 9776
210bf87ae5c7
child 9868
467288cffee2
diff -r 12294115900a -r d8e0ab86ddca src/eric7/MicroPython/WifiDialogs/WifiConnectionDialog.py
--- a/src/eric7/MicroPython/WifiDialogs/WifiConnectionDialog.py	Wed Feb 22 07:48:57 2023 +0100
+++ b/src/eric7/MicroPython/WifiDialogs/WifiConnectionDialog.py	Wed Feb 22 08:20:34 2023 +0100
@@ -1,7 +1,11 @@
 # -*- coding: utf-8 -*-
 
+# Copyright (c) 2023 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
 """
-Module implementing WifiConnectionDialog.
+Module implementing a dialog to enter the parameters needed to connect to a WiFi
+network.
 """
 
 from PyQt6.QtCore import pyqtSlot
@@ -15,7 +19,8 @@
 
 class WifiConnectionDialog(QDialog, Ui_WifiConnectionDialog):
     """
-    Class documentation goes here.
+    Class implementing a dialog to enter the parameters needed to connect to a WiFi
+    network.
     """
 
     def __init__(self, parent=None):
@@ -42,7 +47,7 @@
     @pyqtSlot(str)
     def on_ssidEdit_textChanged(self, ssid):
         """
-        Private slot handling a change of the SSID
+        Private slot handling a change of the SSID.
 
         @param ssid entered SSID
         @type str

eric ide

mercurial