Skip to content

Commit

Permalink
STYLE:Black formatting update
Browse files Browse the repository at this point in the history
  • Loading branch information
aylward committed May 4, 2024
1 parent 85f1841 commit a039b1c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/minder3d/lib/sovImageTablePanelWidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,7 @@ def fill_table(self):
self.imageTableWidget.setItem(
img_num, 2, QTableWidgetItem(file.filename)
)
if (
isinstance(file.file_size, [])
and len(file.file_size) > 0
):
if isinstance(file.file_size, []) and len(file.file_size) > 0:
size_str = [str(i) for i in file.file_size]
self.imageTableWidget.setItem(
img_num, 3, QTableWidgetItem('x'.join(size_str))
Expand Down

0 comments on commit a039b1c

Please sign in to comment.