Missing Newlines

This commit is contained in:
Andrew Arneson
2024-04-27 21:40:53 -06:00
parent d26b308ae2
commit 82a53481f7
5 changed files with 5 additions and 5 deletions

View File

@@ -28,4 +28,4 @@ def open_file(path: str):
else:
logging.info(f"Could not find {command_name} on system PATH")
except:
traceback.print_exc()
traceback.print_exc()

View File

@@ -2,4 +2,4 @@ from .tag_search import TagSearchPanel
from .build_tag import BuildTagPanel
from .tag_database import TagDatabasePanel
from .add_field import AddFieldModal
from .file_extension import FileExtensionModal
from .file_extension import FileExtensionModal

View File

@@ -75,4 +75,4 @@ class AddFieldModal(QWidget):
self.root_layout.addWidget(self.combo_box)
# self.root_layout.setStretch(1,2)
self.root_layout.addStretch(1)
self.root_layout.addWidget(self.button_container)
self.root_layout.addWidget(self.button_container)

View File

@@ -548,4 +548,4 @@ class Validator(QIntValidator):
# print(input)
input = input.strip('0')
print(input)
return super().fixup(str(self.top()) if input else '1')
return super().fixup(str(self.top()) if input else '1')

View File

@@ -3231,4 +3231,4 @@ class FoldersToTagsModal(QWidget):
self.children_layout.addWidget(label)
if len(data["files"]) == 0 and len(data["dirs"].values()) == 0:
self.hide_show()
self.hide_show()