Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Commit

Permalink
Blacken
Browse files Browse the repository at this point in the history
  • Loading branch information
glennmatthews committed Jun 24, 2021
1 parent 6773d91 commit 0e44563
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,10 @@ def docker_compose(context, command, **kwargs):
command (str): Command string to append to the "docker-compose ..." command, such as "build", "up", etc.
**kwargs: Passed through to the context.run() call.
"""
build_env = {"NAUTOBOT_VER": context.nautobot_ssot_servicenow.nautobot_ver, "PYTHON_VER": context.nautobot_ssot_servicenow.python_ver}
build_env = {
"NAUTOBOT_VER": context.nautobot_ssot_servicenow.nautobot_ver,
"PYTHON_VER": context.nautobot_ssot_servicenow.python_ver,
}
compose_command = f'docker-compose --project-name {context.nautobot_ssot_servicenow.project_name} --project-directory "{context.nautobot_ssot_servicenow.compose_dir}"'
for compose_file in context.nautobot_ssot_servicenow.compose_files:
compose_file_path = os.path.join(context.nautobot_ssot_servicenow.compose_dir, compose_file)
Expand Down

0 comments on commit 0e44563

Please sign in to comment.