6 """ |
6 """ |
7 Module implementing a dialog to enter data for the creation of a tag. |
7 Module implementing a dialog to enter data for the creation of a tag. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import Qt |
10 from PyQt6.QtCore import Qt |
11 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QVBoxLayout, QLabel, QLineEdit |
11 from PyQt6.QtWidgets import QDialog, QDialogButtonBox, QLabel, QLineEdit, QVBoxLayout |
12 |
12 |
13 |
13 |
14 class DjangoTagInputDialog(QDialog): |
14 class DjangoTagInputDialog(QDialog): |
15 """ |
15 """ |
16 Class implementing a dialog to enter data for the creation of a tag. |
16 Class implementing a dialog to enter data for the creation of a tag. |