Fixed typo

This commit is contained in:
Vidit Ostwal
2025-01-28 19:55:19 +05:30
parent f14d99cf9c
commit 3a438a3868

View File

@@ -252,8 +252,7 @@ If you want to save the logs as a list of JSON events, set `save_as_json` parame
crew = Crew(output_log_file = True, save_as_json = False) # Logs will be saved as logs.txt
crew = Crew(output_log_file = file_name, save_as_json = False) # Logs will be saved as file_name.txt
crew = Crew(output_log_file = True, save_as_json = True) # Logs will be saved as logs.json
crew = Crew(output_log_file = file_name, save_as_json = False) # Logs will be saved as file_name.json
crew = Crew(output_log_file = file_name, save_as_json = True) # Logs will be saved as file_name.json
```