Simon Wienhöfer
Simon Wienhöfer
@Skyost This solution works well, unless you parallel WeekViewEvents on one day but not the other. Do you know any simple way to get around this? 
That's great :)
@jcrist Can I still assist with specifying the use cases or is this clear to you? This would be super useful to us. We're currently using `__post_init__`, but these validators...
You mean something like this? ```python import os import pathlib import msgspec from dotenv import dotenv_values PostgresDsn = Annotated[ str, msgspec.Meta(pattern=r"^postgresql\+psycopg:\/\/[^:]+:[^@]+@[^:]+(:\d+)?\/\w+$"), ] class SampleSettings(msgspec.Struct, frozen=True): _prefix: ClassVar[str] = "sample" postgres_dsn:...
You are right. Restarting it, solves the issue. I could have sworn that I did that before creating this issue, but it seems I did not. I'm sorry. Thank you...