linter cleanup

This commit is contained in:
Kirill Markin 2024-12-17 17:06:16 +01:00
parent 17c7bb76e8
commit 2a08a70cf4
No known key found for this signature in database
GPG key ID: 03AB9530E15B9C1C

View file

@ -1,3 +1,5 @@
"""This module contains the core functionality of the repo_to_text package."""
from .core import get_tree_structure, load_ignore_specs, should_ignore_file, save_repo_to_text
__all__ = ['get_tree_structure', 'load_ignore_specs', 'should_ignore_file', 'save_repo_to_text']
__all__ = ['get_tree_structure', 'load_ignore_specs', 'should_ignore_file', 'save_repo_to_text']