From cbe5c07f8f0a7e5bb699ca67b7e93b1e12bd1f0e Mon Sep 17 00:00:00 2001 From: jan Date: Sat, 8 Apr 2023 00:40:52 -0700 Subject: [PATCH] add todo about underscore --- masque/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/library.py b/masque/library.py index 4ae144c..23d91f2 100644 --- a/masque/library.py +++ b/masque/library.py @@ -37,7 +37,7 @@ visitor_function_t = Callable[..., 'Pattern'] def _rename_patterns(lib: 'ILibraryView', name: str) -> str: # TODO document rename function - if not name.startswith('_'): + if not name.startswith('_'): # TODO what are the consequences of making '_' special? maybe we can make this decision everywhere? return name stem = name.split('$')[0]