From 2283cd37133d2f520c740d235f7f17b913064ca6 Mon Sep 17 00:00:00 2001 From: t-sasatani Date: Sun, 2 Feb 2025 23:21:02 +0900 Subject: [PATCH] Fix escape sequence --- mio/models/process.py | 1 - mio/types.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/mio/models/process.py b/mio/models/process.py index e62f6179..f3118172 100644 --- a/mio/models/process.py +++ b/mio/models/process.py @@ -170,7 +170,6 @@ class InteractiveDisplayConfig(BaseModel): ) - class DenoiseConfig(MiniscopeConfig, ConfigYAMLMixin): """ Configuration for denoising a video. diff --git a/mio/types.py b/mio/types.py index a24884b3..84606c61 100644 --- a/mio/types.py +++ b/mio/types.py @@ -21,7 +21,7 @@ CONFIG_ID_PATTERN = r"[\w\-\/#]+" """ -Any alphanumeric string (\w), as well as +Any alphanumeric string (\\w), as well as - ``-`` - ``/`` - ``#``