scanner code v1 & new libs
This commit is contained in:
17
lib/pathspec/patterns/gitignore/__init__.py
Normal file
17
lib/pathspec/patterns/gitignore/__init__.py
Normal file
@@ -0,0 +1,17 @@
|
||||
"""
|
||||
The *pathspec.patterns.gitignore* package provides the *gitignore*
|
||||
implementations.
|
||||
|
||||
The following classes are imported and made available from this package:
|
||||
|
||||
- :class:`pathspec.patterns.gitignore.base.GitIgnorePatternError`
|
||||
"""
|
||||
|
||||
# Expose the GitIgnorePatternError for convenience.
|
||||
from .base import (
|
||||
GitIgnorePatternError)
|
||||
|
||||
# Declare imports as part of the public interface.
|
||||
__all__ = [
|
||||
'GitIgnorePatternError',
|
||||
]
|
||||
Reference in New Issue
Block a user