Skip to content

Commit

Permalink
Fix breaking change im YAML library
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalyisaev2 committed Sep 2, 2024
1 parent 1358a58 commit 0a0fc15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(self, docker_compose_yml_path: os.PathLike):
self.docker_compose_yml_path = docker_compose_yml_path

with open(self.docker_compose_yml_path) as f:
self.docker_compose_yml_data = yaml.load(f)
self.docker_compose_yml_data = yaml.load(f, Loader=yaml.FullLoader)

def get_external_port(self, service_name: str, internal_port: int) -> int:
cmd = [
Expand Down

0 comments on commit 0a0fc15

Please sign in to comment.