5 |
5 |
6 """ |
6 """ |
7 Module defining the different Python types and their display strings. |
7 Module defining the different Python types and their display strings. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt5.QtCore import QT_TRANSLATE_NOOP |
10 from PyQt6.QtCore import QT_TRANSLATE_NOOP |
11 |
11 |
12 # Variable type definitions |
12 # Variable type definitions |
13 ConfigVarTypeDispStrings = { |
13 ConfigVarTypeDispStrings = { |
14 '__': QT_TRANSLATE_NOOP('Variable Types', 'Hidden Attributes'), |
14 '__': QT_TRANSLATE_NOOP('Variable Types', 'Hidden Attributes'), |
15 'NoneType': QT_TRANSLATE_NOOP('Variable Types', 'None'), |
15 'NoneType': QT_TRANSLATE_NOOP('Variable Types', 'None'), |