split bugfix

This commit is contained in:
2025-03-05 12:25:21 +01:00
parent d6b097ea59
commit 3b3d77b971
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ class Trigger(AppClass):
raise TriggerImportError( raise TriggerImportError(
"the Trigger class can't used directly, but must be inherited in a trigger specific class" "the Trigger class can't used directly, but must be inherited in a trigger specific class"
) )
_ , _name = self.__module__.split('.') _name = self.__module__.split('.').pop()
return _name return _name
@property @property
+1 -1
View File
@@ -1,6 +1,6 @@
[project] [project]
name = "cpu_governor_auto_adjust" name = "cpu_governor_auto_adjust"
version = "0.1.9" version = "0.1.10"
description = "This application has been developed to automatically change cpu governor based on certain triggers." description = "This application has been developed to automatically change cpu governor based on certain triggers."
authors = [ authors = [
{ name = "Martin Reurekas", email = "martin@semrks.nl" } { name = "Martin Reurekas", email = "martin@semrks.nl" }