This is not my work, but I wanted to share it here because it's a great hack. I found it on this 1Password forum thread. The original author is Sn0wCrack.
Note
I am no longer actively updating this document.
- Microsoft.Build.NoTargets for building a project that produces no assembly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
from urllib.parse import urlparse | |
from typing import Generator, Tuple | |
BRACKETS = [ | |
('(', ')'), | |
('[', ']'), | |
('{', '}'), | |
('<', '>'), | |
] |