src/eric7/Network/IRC/IrcUtilities.py

branch
eric7
changeset 10428
a071d4065202
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
diff -r 3733e2b23cf7 -r a071d4065202 src/eric7/Network/IRC/IrcUtilities.py
--- a/src/eric7/Network/IRC/IrcUtilities.py	Wed Dec 20 11:06:38 2023 +0100
+++ b/src/eric7/Network/IRC/IrcUtilities.py	Wed Dec 20 14:58:58 2023 +0100
@@ -28,7 +28,8 @@
     """
     Module method to generate a time stamp string.
 
-    @return time stamp (string)
+    @return time stamp
+    @rtype str
     """
     if Preferences.getIrc("ShowTimestamps"):
         if Preferences.getIrc("TimestampIncludeDate"):
@@ -53,8 +54,10 @@
     """
     Module method to make the message HTML compliant and detect URLs.
 
-    @param msg message to process (string)
-    @return processed message (string)
+    @param msg message to process
+    @type str
+    @return processed message
+    @rtype str
     """
     # step 1: cleanup message
     msg = Utilities.html_encode(msg)
@@ -179,7 +182,8 @@
     """
     Module function to get the dictionary with the channel modes mappings.
 
-    @return dictionary with channel modes mapping (dict)
+    @return dictionary with channel modes mapping
+    @rtype dict
     """
     global __channelModesDict
 

eric ide

mercurial