summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsiddharth <s@ricketyspace.net>2021-05-29 11:33:07 -0400
committersiddharth <s@ricketyspace.net>2021-05-29 11:33:07 -0400
commit9c1f9273fefb4c064e772d7cf2aa140db2c44ca4 (patch)
treef6e6143e1305910837688dedae4571a18982bcae
parente4ab7a5a42db68007b48dc1b76100ec2027e5ba8 (diff)
acmens.py: update import statements
Comply with PEP-0008.
-rw-r--r--acmens.py17
1 files changed, 15 insertions, 2 deletions
diff --git a/acmens.py b/acmens.py
index 0a4f5f2..38eac6d 100644
--- a/acmens.py
+++ b/acmens.py
@@ -6,13 +6,26 @@
# Copyright © 2021 siddharth <s@ricketyspace.net>
#
-import argparse, subprocess, json, os, urllib.request, sys, base64, binascii, time, hashlib, tempfile, re, copy, textwrap
+import argparse
+import subprocess
+import json
+import os
+import urllib.request
+import sys
+import base64
+import binascii
+import time
+import hashlib
+import tempfile
+import re
+import copy
+import textwrap
from urllib.request import urlopen
from urllib.error import HTTPError
-__version__ = "0.1.5-dev0"
+__version__ = "0.1.5-dev1"
CA_PRD = "https://acme-v02.api.letsencrypt.org"
CA_STG = "https://acme-staging-v02.api.letsencrypt.org"