diff --git a/examples/write_teaching_plan.py b/examples/write_teaching_plan.py index 30a8d8366..eec72ae41 100644 --- a/examples/write_teaching_plan.py +++ b/examples/write_teaching_plan.py @@ -65,7 +65,7 @@ async def startup(lesson_file: str, investment: float = 3.0, n_round: int = 1, * """ lesson = "" - if lesson_file is not None and Path(lesson_file).exists(): + if lesson_file and Path(lesson_file).exists(): async with aiofiles.open(lesson_file, mode="r", encoding="utf-8") as reader: lesson = await reader.read() logger.info(f"Course content: {lesson}")