Skip to content

Commit

Permalink
Fixed default value.
Browse files Browse the repository at this point in the history
  • Loading branch information
Knucklessg1 committed Apr 26, 2024
1 parent 9fec1b9 commit d2b1458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion media_manager/media_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def get_media_directory_list(self) -> List[str]:
"""
return self.media_file_directories

def print(self, string: str, quiet: Optional[bool], end: Optional[str] = "\n") -> None:
def print(self, string: str, quiet: Optional[bool] = True, end: Optional[str] = "\n") -> None:
"""
Print a string.
Expand Down

0 comments on commit d2b1458

Please sign in to comment.