Skip to content

Commit e3f8960

Browse files
authored
Merge pull request #163 from Ricks-Lab/v3.9.0release
V3.9.0release
2 parents 2c2ab82 + 1168241 commit e3f8960

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

Diff for: GPUmodules/GPUmodule.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1999,7 +1999,7 @@ def gpus(self) -> Generator[GpuItem, None, None]:
19991999
20002000
:return: GpuUItem
20012001
"""
2002-
return self.__iter__()
2002+
return iter(self)
20032003

20042004
def add(self, gpu_item: GpuItem) -> None:
20052005
""" Add given GpuItem to the GpuList.

Diff for: GPUmodules/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '3.9.0-RC2'
1+
__version__ = '3.9.0'
22
__status__ = 'Development Status :: 5 - Production/Stable'
33
#__status__ = 'Development Status :: 4 - Beta'
44
__author__ = 'RicksLab'

Diff for: gpu-mon

+2-4
Original file line numberDiff line numberDiff line change
@@ -123,16 +123,14 @@ if not GTK:
123123
LOGGER.debug('started with Gtk disabled')
124124

125125
def set_quit(self, _arg2, _arg3) -> None:
126-
"""
127-
Set quit flag when Gtk quit is selected.
126+
""" Set quit flag when Gtk quit is selected.
128127
"""
129128
self.quit = True
130129
else:
131130
set_gtk_prop = GPUgui.GuiProps.set_gtk_prop
132131

133132
class MonitorWindow(Gtk.Window):
134-
"""
135-
Custom PAC Gtk window.
133+
""" Custom PAC Gtk window.
136134
"""
137135
quit: bool = False
138136
gui_enabled: bool = True

0 commit comments

Comments
 (0)