fix: show role for each team member in seed summary
Some checks failed
CI / dependency-scanning (push) Successful in 28s
CI / docs (push) Has been skipped
CI / deploy (push) Has been skipped
CI / ruff (push) Successful in 10s
CI / pytest (push) Failing after 46m14s
CI / validate (push) Successful in 22s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-26 12:42:06 +01:00
parent 3053bc5d92
commit 962862ccc1

View File

@@ -1397,6 +1397,7 @@ def print_summary(db: Session):
print(f" {member_data['first_name']} {member_data['last_name']} ({merchant_name})")
print(f" Email: {member_data['email']}")
print(f" Password: {member_data['password']}") # noqa: SEC021
print(f" Role: {member_data['role']}")
print(f" Stores: {store_codes}")
print()