Skip to content

Commit 5b96581

Browse files
committed
don't assign
1 parent 0f796c2 commit 5b96581

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/dir_listing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def fetch_summary(meeting):
5656
for session_id in sessions:
5757
session_time = "-".join(session_id.rsplit("-", 2)[-2:])
5858
summary.append(f"# Session: {session_time}")
59-
with fh as os.open(f"{auto_minutes_path}/{session_id}", "r"):
59+
with os.open(f"{auto_minutes_path}/{session_id}", "r") as fh:
6060
session_md = fh.read()
6161
session_md = session_md.replace(f"# {wgname.upper()}", "")
6262
summary.append(session_md)

0 commit comments

Comments
 (0)