Skip to content

Commit c7b8142

Browse files
committed
JSON > JSONURLGetter
1 parent 27db28a commit c7b8142

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919

2020
from autopkglib import URLGetter
2121

22-
__all__ = ["JSON"]
22+
__all__ = ["JSONURLGetter"]
2323

2424

25-
class JSON(URLGetter):
25+
class JSONURLGetter(URLGetter):
2626
"""Parse JSON into usable autopkg variables."""
2727

2828
description = __doc__
@@ -49,5 +49,5 @@ def main(self):
4949

5050

5151
if __name__ == "__main__":
52-
PROCESSOR = JSON()
52+
PROCESSOR = JSONURLGetter()
5353
PROCESSOR.execute_shell()

0 commit comments

Comments
 (0)