Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add Python 3.12 support #888

Merged
merged 7 commits into from
Nov 3, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove space around f-string variable
  • Loading branch information
dantownsend committed Oct 4, 2023
commit 3d00fcc299ec8008be4913c740127eb6d99ce751
2 changes: 1 addition & 1 deletion piccolo/apps/migrations/auto/schema_differ.py
Original file line number Diff line number Diff line change
@@ -278,7 +278,7 @@ def check_renamed_columns(self) -> RenameColumnCollection:
user_response = self.auto_input or input(
f"Did you rename the `{drop_column.db_column_name}` " # noqa: E501
f"column to `{add_column.db_column_name}` on the "
f"`{ add_column.table_class_name }` table? (y/N)"
f"`{add_column.table_class_name}` table? (y/N)"
)
if user_response.lower() == "y":
used_drop_column_names.append(drop_column.column_name)