Skip to content

Commit

Permalink
Merge pull request #4801 from freelawproject/fix-logging-wl-import
Browse files Browse the repository at this point in the history
fix(update_case_names): Logging counter bug
  • Loading branch information
flooie authored Dec 9, 2024
2 parents f96e185 + 7354535 commit 672752f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -353,10 +353,10 @@ def process_csv(
)

if cluster_updated:
total_clusters_updated = +1
total_clusters_updated += 1

if docket_updated:
total_dockets_updated = +1
total_dockets_updated += 1

# Add any of the citations if possible
for citation in valid_citations:
Expand Down

0 comments on commit 672752f

Please sign in to comment.