Skip to content

Commit 7a14beb

Browse files
committed
why not!
1 parent 07f774e commit 7a14beb

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

jamftf/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def apply(self, data: dict):
7070
if self.opts[o]:
7171
self.lg.debug(f"{o} flagged to be set")
7272

73-
data = options_master[o](self, data)
73+
data = options_master[o](data)
7474

7575
self.lg.info(f"{o} set for {self.resource_type}")
7676

jamftf/resources.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import jamfpy
44
from requests import HTTPError
5+
from logging import Logger
56
from .options import Options, Applicator
67
from .exceptions import (
78
InvalidResourceTypeError,
@@ -14,6 +15,7 @@
1415
class Resource:
1516
"""parent obj for resources"""
1617
resource_type = ""
18+
lg: Logger
1719

1820
def __init__(
1921
self,

0 commit comments

Comments
 (0)