Enable lints for the setup wizard

This commit is contained in:
Thomas Sileo
2019-04-22 22:41:58 +02:00
parent efe99f9477
commit cf525363af
2 changed files with 6 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ from markdown import markdown
from prompt_toolkit import prompt
def main():
def main() -> None:
print("Welcome to microblog.pub setup wizard\n")
config_file = Path("/app/out/config/me.yml")
@@ -17,10 +17,10 @@ def main():
if config_file.exists() or env_file.exists():
# Spit out the relative path for the "config artifacts"
config_file = "config/me.yml"
env_file = ".env"
rconfig_file = "config/me.yml"
renv_file = ".env"
print(
f"Existing setup detected, please delete {config_file} and/or {env_file} before restarting the wizard"
f"Existing setup detected, please delete {rconfig_file} and/or {renv_file} before restarting the wizard"
)
sys.exit(2)