Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
wangpatrick57 committed Dec 26, 2024
1 parent 3add664 commit 6ca5cb2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions manage/tests/unittest_clean.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ class CleanTests(unittest.TestCase):

@staticmethod
def create_structure(root_path: Path, structure: FilesystemStructure) -> None:
"""
Create files and directories according to the structure.
"""
def create_structure_internal(
root_path: Path, cur_path: Path, structure: FilesystemStructure
) -> None:
Expand Down Expand Up @@ -53,6 +56,9 @@ def create_structure_internal(

@staticmethod
def verify_structure(root_path: Path, structure: FilesystemStructure) -> bool:
"""
Verify that the files and directories match the expected structure.
"""
def verify_structure_internal(
root_path: Path, cur_path: Path, structure: FilesystemStructure
) -> bool:
Expand Down

0 comments on commit 6ca5cb2

Please sign in to comment.