Skip to content

Commit 7190ed0

Browse files
committed
Fix incorrect import of validate_shebangs function
1 parent 978e94c commit 7190ed0

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

pre_commit_hooks/check_jamf_extension_attributes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import argparse
55
import re
66

7-
from util import validate_shebangs
7+
from pre_commit_hooks.util import validate_shebangs
88

99

1010
def build_argument_parser():

pre_commit_hooks/check_jamf_scripts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import argparse
55

6-
from util import validate_shebangs
6+
from pre_commit_hooks.util import validate_shebangs
77

88

99
def build_argument_parser():

pre_commit_hooks/check_munki_pkgsinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
from pathlib import Path
88
from xml.parsers.expat import ExpatError
99

10-
from util import validate_shebangs
1110

1211
from pre_commit_hooks.util import (
1312
validate_pkginfo_key_types,
1413
validate_required_keys,
1514
validate_restart_action_key,
15+
validate_shebangs,
1616
)
1717

1818

pre_commit_hooks/check_munkiadmin_scripts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import argparse
55
import os
66

7-
from util import validate_shebangs
7+
from pre_commit_hooks.util import validate_shebangs
88

99

1010
def build_argument_parser():

pre_commit_hooks/check_outset_scripts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import argparse
55
import os
66

7-
from util import validate_shebangs
7+
from pre_commit_hooks.util import validate_shebangs
88

99

1010
def build_argument_parser():

0 commit comments

Comments
 (0)