Skip to content

Commit 94dfff6

Browse files
committed
Fix python test workflows
1 parent 9b36b6d commit 94dfff6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reactpy_django/clean.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def clean_user_data(verbosity: int = 1):
8787
start_time = timezone.now()
8888
user_model = get_user_model()
8989
all_users = user_model.objects.all()
90-
all_user_pks = all_users.values_list(user_model._meta.pk.name, flat=True) # type: ignore
90+
all_user_pks = all_users.values_list(user_model._meta.pk.name, flat=True)
9191

9292
# Django doesn't support using QuerySets as an argument with cross-database relations.
9393
if user_model.objects.db != UserDataModel.objects.db:

0 commit comments

Comments
 (0)