1
1
mirror of https://github.com/r4sas/PBinCLI synced 2025-01-24 05:24:13 +00:00

remove unused import, replace comment definition

Signed-off-by: r4sas <r4sas@i2pmail.org>
This commit is contained in:
R4SAS 2019-09-18 10:22:58 +00:00
parent c3a491ac46
commit 181763070c
Signed by: r4sas
GPG Key ID: 66F6C87B98EBCFE2

View File

@ -2,7 +2,7 @@
import os, sys, argparse import os, sys, argparse
import pbincli.actions import pbincli.actions
from pbincli.api import PrivateBin, Shortener from pbincli.api import PrivateBin
from pbincli.utils import PBinCLIException, validate_url from pbincli.utils import PBinCLIException, validate_url
CONFIG_PATHS = [os.path.join(".", "pbincli.conf", ), CONFIG_PATHS = [os.path.join(".", "pbincli.conf", ),
@ -87,12 +87,11 @@ def main():
'no_insecure_warning': False 'no_insecure_warning': False
} }
"""Configuration preference order: # Configuration preference order:
1. Command line switches # 1. Command line switches
2. Environment variables # 2. Environment variables
3. Configuration file # 3. Configuration file
4. Default values below # 4. Default values below
"""
for p in CONFIG_PATHS: for p in CONFIG_PATHS:
if os.path.exists(p): if os.path.exists(p):