More cleanup
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
# DEVenver
|
||||
# ------------------------------------------------------------------------------
|
||||
# A simple python script to download portable applications and install them by
|
||||
# unzipping them to a structured directory tree.
|
||||
|
||||
@@ -22,11 +21,8 @@ from string import Template
|
||||
from enum import Enum
|
||||
|
||||
# Internal
|
||||
# ------------------------------------------------------------------------------
|
||||
DOWNLOAD_CHUNK_SIZE = 1 * 1024 * 1024 # 1 megabyte
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
|
||||
# These variables are set once they are downloaded dynamically and installed
|
||||
# from the internal app listing!
|
||||
zstd_exe = ""
|
||||
@@ -34,7 +30,6 @@ zip7_exe = ""
|
||||
zip7_bootstrap_exe = ""
|
||||
|
||||
# Functions
|
||||
# ------------------------------------------------------------------------------
|
||||
def print_header(title):
|
||||
line = f'> ' + title + ' ';
|
||||
print(line.ljust(100, '-'))
|
||||
|
||||
Reference in New Issue
Block a user