MAINT Fix typo in bump-version (#2745)

This commit is contained in:
Hood Chatham 2022-06-20 12:35:40 -07:00 committed by GitHub
parent f853860313
commit 734e91c4f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -214,8 +214,8 @@ def main():
if args.dry_run:
return
for file, content in update_queue:
file.write_text(content)
for target, content in update_queue:
target.file.write_text(content)
if __name__ == "__main__":