Skip to content

Commit

Permalink
Fix incorrect import of validate_shebangs function
Browse files Browse the repository at this point in the history
  • Loading branch information
homebysix committed Jun 10, 2024
1 parent 978e94c commit 7190ed0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pre_commit_hooks/check_jamf_extension_attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import argparse
import re

from util import validate_shebangs
from pre_commit_hooks.util import validate_shebangs


def build_argument_parser():
Expand Down
2 changes: 1 addition & 1 deletion pre_commit_hooks/check_jamf_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import argparse

from util import validate_shebangs
from pre_commit_hooks.util import validate_shebangs


def build_argument_parser():
Expand Down
2 changes: 1 addition & 1 deletion pre_commit_hooks/check_munki_pkgsinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
from pathlib import Path
from xml.parsers.expat import ExpatError

from util import validate_shebangs

from pre_commit_hooks.util import (
validate_pkginfo_key_types,
validate_required_keys,
validate_restart_action_key,
validate_shebangs,
)


Expand Down
2 changes: 1 addition & 1 deletion pre_commit_hooks/check_munkiadmin_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import argparse
import os

from util import validate_shebangs
from pre_commit_hooks.util import validate_shebangs


def build_argument_parser():
Expand Down
2 changes: 1 addition & 1 deletion pre_commit_hooks/check_outset_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import argparse
import os

from util import validate_shebangs
from pre_commit_hooks.util import validate_shebangs


def build_argument_parser():
Expand Down

0 comments on commit 7190ed0

Please sign in to comment.