Fixed a code style issue. eric7

Thu, 30 Dec 2021 11:32:05 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 30 Dec 2021 11:32:05 +0100
branch
eric7
changeset 189
c0d638327085
parent 188
7bc3332b65f9
child 190
3104a5a3ea13

Fixed a code style issue.

AssistantEric/Assistant.py file | annotate | diff | comparison | revisions
--- a/AssistantEric/Assistant.py	Thu Dec 30 11:29:53 2021 +0100
+++ b/AssistantEric/Assistant.py	Thu Dec 30 11:32:05 2021 +0100
@@ -818,11 +818,11 @@
             documentCalltips = self.__getDocumentCalltips(
                 word, prefix, mod, editor)
         
-        return list(sorted(
+        return sorted(
             set(apiCalltips)
             .union(set(projectCalltips))
             .union(set(documentCalltips))
-        ))
+        )
     
     def __getApiCalltips(self, api, word, commas, prefix, module, editor):
         """

eric ide

mercurial