7 Module implementing some utility functions for the Black based code formatting. |
7 Module implementing some utility functions for the Black based code formatting. |
8 """ |
8 """ |
9 |
9 |
10 import re |
10 import re |
11 |
11 |
|
12 import black |
|
13 |
12 from PyQt6.QtCore import QCoreApplication, pyqtSlot |
14 from PyQt6.QtCore import QCoreApplication, pyqtSlot |
13 |
15 |
14 from eric7.EricWidgets import EricMessageBox |
16 from eric7.EricWidgets import EricMessageBox |
15 |
|
16 import black |
|
17 |
17 |
18 |
18 |
19 def getDefaultConfiguration(): |
19 def getDefaultConfiguration(): |
20 """ |
20 """ |
21 Function to generate a default set of configuration parameters. |
21 Function to generate a default set of configuration parameters. |