From 3a19f3cef82fe46009ccfbc26459bd27eff89c7c Mon Sep 17 00:00:00 2001 From: Hugo Posnic Date: Sat, 18 Nov 2017 20:18:48 +0100 Subject: [PATCH] Don't need "(object)" for classes in Python3 --- src/trimage/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/trimage/ui.py b/src/trimage/ui.py index 53a2794..b855a92 100644 --- a/src/trimage/ui.py +++ b/src/trimage/ui.py @@ -30,7 +30,7 @@ class TrimageTableView(QTableView): self.drop_event_signal.emit(filelist) -class Ui_trimage(object): +class Ui_trimage(): def get_image(self, image): """ Get the correct link to the images used in the UI """ imagelink = path.join(path.dirname(path.dirname(path.realpath(__file__))), "trimage/" + image)