diff --git a/EnumEnvVars.py b/EnumEnvVars.py index a2bfd31..29d49ac 100644 --- a/EnumEnvVars.py +++ b/EnumEnvVars.py @@ -5,7 +5,7 @@ from pathlib import Path import requests -from alive_progress import alive_bar +from alive_progress import alive_bar DEFAULT_URL = "http://localhost:2375" # Docker Engine API (no auth; enable with care) @@ -85,7 +85,7 @@ def parse_args(): def print_engine_overview(info: dict): - """Pretty, concise overview of key /info fields.""" + """Pretty, concise overview of key /info fields. """ if not info: print("Engine Info: (unavailable)") return diff --git a/pyproject.toml b/pyproject.toml index 56f6e31..5b23029 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "docker-enumsensitive" -version = "0.1.5" +version = "0.1.6" description = "Docker Engine HTTP API enumeration helpers for env vars, secrets, and images." requires-python = ">=3.8" dependencies = [ "requests", "alive-progress",]