Device-Type-Library-Import
Device-Type-Library-Import copied to clipboard
Change regex string to raw string to avoid improper escape
The regex string '\W+' causes a SyntaxWarning in Python 3.12 and later, since this is an invalid escape sequence. It will eventually become a SyntaxError in later versions. Changing this to a raw string will prevent it from being misinterpreted as an escape sequence.
Fixes #139