Skip to content

Commit

Permalink
set verbose to zero dir_utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pooya-mohammadi committed Oct 21, 2023
1 parent 80964fc commit 7be19be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deep_utils/utils/dir_utils/dir_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ def list_dir_full_path(directory: str) -> List[str]:
return [join(directory, name) for name in os.listdir(directory)]

@staticmethod
def remove_create(dir_: str, remove=True, logger=None, verbose=1) -> str:
def remove_create(dir_: str, remove=True, logger=None, verbose=0) -> str:
"""
Removes and creates the input directory!
:param dir_:
Expand Down

0 comments on commit 7be19be

Please sign in to comment.