[SDK] Fix missing comma in check_packing.py

This commit is contained in:
Mark Jansen 2022-11-03 00:13:48 +01:00
parent 2567a66399
commit f89b406de6
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -1,14 +1,14 @@
'''
PROJECT: ReactOS code linter
LICENSE: MIT (https://spdx.org/licenses/MIT)
PURPOSE: Verifies that there are no headers included when packing is modified
PURPOSE: Verifies that there are no headers included where packing is modified
COPYRIGHT: Copyright 2021 Mark Jansen <mark.jansen@reactos.org>
'''
from pathlib import Path
import re
DEFAULT_SUFFIXES = [
'.cpp', '.cxx', '.cc', '.c', '.idl'
'.cpp', '.cxx', '.cc', '.c', '.idl',
'.hpp', '.h', '.inc'
]