Skip to content

Commit

Permalink
Revert certifi
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuniz committed May 7, 2023
1 parent 3ddf318 commit 020e6dd
Show file tree
Hide file tree
Showing 4 changed files with 4,437 additions and 0 deletions.
3 changes: 3 additions & 0 deletions workflow/certifi/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from .core import contents, where

__version__ = "2021.10.08"
12 changes: 12 additions & 0 deletions workflow/certifi/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
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())
Loading

0 comments on commit 020e6dd

Please sign in to comment.