Skip to content

Commit

Permalink
Update panc/src/main/scripts/panlint/panlint.py
Browse files Browse the repository at this point in the history
Co-authored-by: James Adams <[email protected]>
  • Loading branch information
wpoely86 and jrha committed Oct 24, 2024
1 parent fb35c57 commit 4cf2273
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions panc/src/main/scripts/panlint/panlint.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,9 +515,9 @@ def main():
print('No files were provided, not doing anything')
return 0

whitelist_components = None
if args.whitelist_components:
whitelist_components = args.whitelist_components.split(',')
ignore_components = None
if args.ignore_components:
ignore_components = args.ignore_components.split(',')

for path in args.paths:
for filename in glob(path):
Expand Down

0 comments on commit 4cf2273

Please sign in to comment.