Skip to content

Commit 714f2ae

Browse files
committed
version bump
1 parent 7a14beb commit 714f2ae

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

jamftf/config_ingest.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
from .options import Options
2020

2121

22-
23-
2422
RESOURCE_TYPE_OBJECT_MAP = {
2523
"jamfpro_script": Scripts,
2624
"jamfpro_category": Categories,
@@ -55,7 +53,7 @@ def parse_config_file(path: str) -> list[Resource]:
5553
required keys as specified in REQUIRED_RESOURCE_CONFIG_KEYS.
5654
"""
5755

58-
# // TODO sanitise the path
56+
# // TODO sanitise the path
5957
sanitized_path = path
6058

6159
json_data = {}

jamftf/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def _check_illegal_chars(self, data: dict):
136136
for i in data.values():
137137
for c in i["name"]:
138138
if c in ILLEGAL_NAME_CHARS:
139-
raise DataError(f"Illegal char: '{c}' (ASCII: {ord(c)}) found in {self.resource_type}, id: {i["id"]}, name: {i['name']}")
139+
raise DataError(f"Illegal char: '{c}' (ASCII: {ord(c)}) found in {self.resource_type}, id: {i['id']}, name: {i['name']}")
140140

141141

142142
def _check_duplicates(self, data: dict):

jamftf/resources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
"""Resource parent object"""
22

3+
from logging import Logger
34
import jamfpy
45
from requests import HTTPError
5-
from logging import Logger
66
from .options import Options, Applicator
77
from .exceptions import (
88
InvalidResourceTypeError,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
setup(
44
name="jamftf",
55
packages=find_packages(),
6-
version="0.1.4"
6+
version="0.2.0"
77
)

0 commit comments

Comments
 (0)