fix get_placeholder

This commit is contained in:
dni ⚡
2024-09-05 12:39:08 +02:00
parent 51279d6738
commit 24fa921258
+1 -1
View File
@@ -54,7 +54,7 @@ def get_placeholder(model: Any, field: str) -> str:
if type_ == datetime.datetime:
return compat_timestamp_placeholder(field)
else:
return "?"
return f":{field}"
class Compat: