Skip to content
Snippets Groups Projects
Commit e67055bb authored by Antoine Lambert's avatar Antoine Lambert
Browse files

hypothesis_strategies: Fix mypy error

Use a list instead of a tuple to keep mypy happy with latest
hypothesis version.
parent 35588777
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,8 @@ from .model import (
from .swhids import ExtendedObjectType, ExtendedSWHID
pgsql_alphabet = characters(
blacklist_categories=("Cs",), blacklist_characters=["\u0000"]
blacklist_categories=["Cs"],
blacklist_characters=["\u0000"],
) # postgresql does not like these
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment