mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
13 lines
315 B
Python
13 lines
315 B
Python
from typing import Dict, List, Optional
|
|
|
|
|
|
def cap_list_to_dict(caps: List[str]) -> Dict[str, Optional[str]]:
|
|
d: Dict[str, Optional[str]] = {}
|
|
for cap in caps:
|
|
if "=" in cap:
|
|
(key, value) = cap.split("=", 1)
|
|
d[key] = value
|
|
else:
|
|
d[cap] = None
|
|
return d
|