Adel Haddad
Results
22
issues of
Adel Haddad
This extension as suggested in the lit.dev docs makes the DX much better, a sensible default addition I hope! https://lit.dev/docs/tools/development/#ide-plugins
This addresses the SyntaxWarning for 'invalid escape sequence' For example in a Python REPL or otherwise: ```python import re >>> match1 = re.match(r"^COM(\d+)$", "COM124") >>> match1.group() 'COM124' >>> match2 =...