mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 07:49:02 +00:00
01f1e5e46e
--HG-- branch : objp
10 lines
200 B
Python
10 lines
200 B
Python
from cocoa.inter import PyGUIObject
|
|
|
|
from core.gui.stats_label import StatsLabel
|
|
|
|
class PyStatsLabel(PyGUIObject):
|
|
py_class = StatsLabel
|
|
|
|
def display(self):
|
|
return self.py.display
|