Skip to content

Commit

Permalink
formatting post PR
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnPreston committed Nov 29, 2023
1 parent 15ddba1 commit 752bad4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ecs_composex/compose/compose_services/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,9 @@ def ephemeral_storage(self):
if ephemeral_storage <= 21:
return 0
elif ephemeral_storage > 200:
LOG.warning(f"{self.name} - {storage_key} set to maximum 200 ({ephemeral_storage} > 200)")
LOG.warning(
f"{self.name} - {storage_key} set to maximum 200 ({ephemeral_storage} > 200)"
)
return 200
else:
LOG.info(f"{self.name} - {storage_key} set to {ephemeral_storage}")
Expand Down

0 comments on commit 752bad4

Please sign in to comment.