Skip to content

Commit

Permalink
Fix output
Browse files Browse the repository at this point in the history
  • Loading branch information
JINWOO-J committed Nov 16, 2023
1 parent b20cf91 commit 5d99b6f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions BUILD_ARGS
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

--build-arg BASE_IMAGE=python:3.9.13-slim-buster
--build-arg BUILD_DATE=2023-11-16T12:50:34UTC
--build-arg BUILD_DATE=2023-11-16T12:59:51UTC
--build-arg DOCKER_BUILD_OPTION=--no-cache --rm=true
--build-arg ECHO_OPTION=
--build-arg GIT_USER=JINWOO-J
Expand All @@ -11,4 +11,4 @@
--build-arg REPO_HUB=jinwoo
--build-arg SED_OPTION=''
--build-arg UNAME_S=Darwin
--build-arg VERSION=1.0.55
--build-arg VERSION=1.0.56
2 changes: 1 addition & 1 deletion pawnlib/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__title__ = 'pawnlib'
__description__ = 'pawnlib is a collection of libraries for IaC.'
__url__ = 'https://github.com/jinwoo-j/pawnlib'
__version__ = '1.0.55'
__version__ = '1.0.56'
__author__ = 'Jinwoo Jeong'
__author_email__ = 'jinwoo@parametacorp.com'
__license__ = 'MIT'
Expand Down
8 changes: 4 additions & 4 deletions pawnlib/input/prompt.py
Original file line number Diff line number Diff line change
Expand Up @@ -1124,7 +1124,7 @@ def get_environment(key, default="", func: Callable = ""):
return env_value


def json_input_prompt(default={}, message="Edit JSON",):
def json_input_prompt(default={}, message="Edit Transaction JSON"):
"""
Prompts the user to edit a JSON file.
Expand All @@ -1148,8 +1148,8 @@ def json_input_prompt(default={}, message="Edit JSON",):
json_text = inq_prompt(
type="input",
message=f"{message} :",
default=_default_json,
long_instruction=f"Move the arrows to edit the {message}",
validate=JsonValidator()
default=f"\n{_default_json}",
long_instruction=f"Move the arrows to edit the {str(message).lower()}",
validate=JsonValidator(),
)
return json.loads(json_text)

0 comments on commit 5d99b6f

Please sign in to comment.