mirror of
https://github.com/rembo10/headphones.git
synced 2026-01-14 17:28:01 -05:00
Mostly just updating libraries, removing string encoding/decoding, fixing some edge cases. No new functionality was added in this commit.
13 lines
243 B
Python
13 lines
243 B
Python
import argparse
|
|
|
|
from certifi import contents, where
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("-c", "--contents", action="store_true")
|
|
args = parser.parse_args()
|
|
|
|
if args.contents:
|
|
print(contents())
|
|
else:
|
|
print(where())
|