Skip to content

Commit 50b13df

Browse files
tw4likreymer
andauthored
Fix isinstance arg
Co-authored-by: Ilya Kreymer <ikreymer@users.noreply.github.com>
1 parent 9a656fd commit 50b13df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/btrixcloud/crawl_logs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ async def add_log_line(
8080
details = None
8181
log_dict_details = log_dict.get("details")
8282
if log_dict_details:
83-
if isinstance(log_dict_details, Dict):
83+
if isinstance(log_dict_details, dict):
8484
details = log_dict_details
8585
else:
8686
details = {"items": log_dict_details}

0 commit comments

Comments
 (0)