isort followed by black
This commit is contained in:
parent
0862ce7fd6
commit
fb873edcb5
56 changed files with 311 additions and 360 deletions
|
|
@ -1,24 +1,18 @@
|
|||
import pytest
|
||||
from datetime import date, timedelta
|
||||
from PySide6.QtCore import Qt, QDate
|
||||
from PySide6.QtWidgets import (
|
||||
QMessageBox,
|
||||
QInputDialog,
|
||||
QFileDialog,
|
||||
QDialog,
|
||||
)
|
||||
from sqlcipher3.dbapi2 import IntegrityError
|
||||
from unittest.mock import MagicMock, patch
|
||||
|
||||
from bouquin.theme import ThemeManager, ThemeConfig, Theme
|
||||
import bouquin.strings as strings
|
||||
import pytest
|
||||
from bouquin.theme import Theme, ThemeConfig, ThemeManager
|
||||
from bouquin.time_log import (
|
||||
TimeLogWidget,
|
||||
TimeLogDialog,
|
||||
TimeCodeManagerDialog,
|
||||
TimeLogDialog,
|
||||
TimeLogWidget,
|
||||
TimeReportDialog,
|
||||
)
|
||||
import bouquin.strings as strings
|
||||
|
||||
from unittest.mock import patch, MagicMock
|
||||
from PySide6.QtCore import QDate, Qt
|
||||
from PySide6.QtWidgets import QDialog, QFileDialog, QInputDialog, QMessageBox
|
||||
from sqlcipher3.dbapi2 import IntegrityError
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue