Merge pull request #3827 from freqtrade/dependabot/pip/develop/questionary-1.6.0

Bump questionary from 1.5.2 to 1.6.0
This commit is contained in:
Matthias
2020-10-05 16:33:43 +02:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
import logging import logging
from pathlib import Path from pathlib import Path
from typing import Any, Dict from typing import Any, Dict, List
from questionary import Separator, prompt from questionary import Separator, prompt
@@ -48,7 +48,7 @@ def ask_user_config() -> Dict[str, Any]:
Interactive questions built using https://github.com/tmbo/questionary Interactive questions built using https://github.com/tmbo/questionary
:returns: Dict with keys to put into template :returns: Dict with keys to put into template
""" """
questions = [ questions: List[Dict[str, Any]] = [
{ {
"type": "confirm", "type": "confirm",
"name": "dry_run", "name": "dry_run",

View File

@@ -34,5 +34,5 @@ flask-cors==3.0.9
# Support for colorized terminal output # Support for colorized terminal output
colorama==0.4.3 colorama==0.4.3
# Building config files interactively # Building config files interactively
questionary==1.5.2 questionary==1.6.0
prompt-toolkit==3.0.7 prompt-toolkit==3.0.7