We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07f774e commit 7a14bebCopy full SHA for 7a14beb
jamftf/options.py
@@ -70,7 +70,7 @@ def apply(self, data: dict):
70
if self.opts[o]:
71
self.lg.debug(f"{o} flagged to be set")
72
73
- data = options_master[o](self, data)
+ data = options_master[o](data)
74
75
self.lg.info(f"{o} set for {self.resource_type}")
76
jamftf/resources.py
@@ -2,6 +2,7 @@
2
3
import jamfpy
4
from requests import HTTPError
5
+from logging import Logger
6
from .options import Options, Applicator
7
from .exceptions import (
8
InvalidResourceTypeError,
@@ -14,6 +15,7 @@
14
15
class Resource:
16
"""parent obj for resources"""
17
resource_type = ""
18
+ lg: Logger
19
20
def __init__(
21
self,
0 commit comments