Skip to content

Commit

Permalink
Dev (#2)
Browse files Browse the repository at this point in the history
* removed python2 support

* removed python2 support
  • Loading branch information
bhjelmar authored Dec 1, 2021
1 parent e26ad37 commit 75e5c08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/config-assessment-tool.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python3
import sys
import logging
import os
import subprocess
import sys
import time
import zipfile
from http.client import RemoteDisconnected
Expand All @@ -11,6 +11,8 @@

from urllib.request import urlopen

assert sys.version_info >= (3, 5), "Python 3.5 or higher required"


def run(path: str):
splash = """
Expand Down Expand Up @@ -164,8 +166,6 @@ def runNonBlockingCommand(command: str):


if __name__ == "__main__":
assert sys.version_info >= (3, 5), "Python 3.5 or higher required"

# cd to config-assessment-tool root directory
path = os.path.realpath(f"{__file__}/../..")
os.chdir(path)
Expand Down

0 comments on commit 75e5c08

Please sign in to comment.