Skip to content

Commit

Permalink
fix: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
andyhuang18 committed Dec 2, 2024
1 parent fc0dc62 commit 9f024d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/company/scripts/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def fetch_and_upload_issuecount_to_clickhouse(csv_file_path):
for row in csv_reader:
# 构造插入的 SQL 语句
insert_query = """
INSERT INTO community_issue_count (community, isssuecount)
INSERT INTO community_issue_count (community, issuecount)
VALUES
"""
values = f"('{row['community']}', {row['issuecount']})"
Expand Down

0 comments on commit 9f024d0

Please sign in to comment.