Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tomba committed Aug 29, 2024
1 parent 56f1315 commit 9be50d0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import sys

import numpy as np
from PyQt6.QtCore import Qt
from PyQt6 import QtWidgets

from pixutils.formats import PixelFormats, str_to_fourcc
Expand All @@ -18,7 +17,7 @@
TEST_PATH = os.path.dirname(os.path.abspath(__file__))

def main():
qApp = QtWidgets.QApplication(sys.argv)
qapp = QtWidgets.QApplication(sys.argv)

# Some formats are not supported yet

Expand Down Expand Up @@ -112,7 +111,7 @@ def main():
widget.setLayout(layout)
widget.showMaximized()

qApp.exec()
qapp.exec()

if __name__ == '__main__':
main()

0 comments on commit 9be50d0

Please sign in to comment.