mirror of
https://github.com/arsenetar/dupeguru-cocoa.git
synced 2025-03-10 13:44:37 +00:00
10 lines
201 B
Python
10 lines
201 B
Python
|
from cocoa.inter import PyGUIObject, GUIObjectView
|
||
|
|
||
|
class StatsLabelView(GUIObjectView):
|
||
|
pass
|
||
|
|
||
|
class PyStatsLabel(PyGUIObject):
|
||
|
|
||
|
def display(self) -> str:
|
||
|
return self.model.display
|