Skip to content

Commit

Permalink
fix print double failed, bump to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentclaes committed May 23, 2022
1 parent 23bf2aa commit c6f27f5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "stepview"
version = "0.4.0"
version = "0.4.1"
description = "1 global view of all your stepfunctions statemachines"
authors = ["vincent <[email protected]>"]
license = "GNU GPLv3"
Expand Down
2 changes: 0 additions & 2 deletions stepview/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ def get_values(self):
f"{self.state.succeeded_perc:,.2f}",
f"{self.state.running}",
f"{self.state.failed:,.0f}/"
f"{self.state.failed:,.0f}/"
f"{self.state.aborted:,.0f}/"
f"{self.state.timed_out:,.0f}/"
f"{self.state.throttled:,.0f}",
Expand Down Expand Up @@ -202,7 +201,6 @@ def get_resource_page_for_tags(tags_client:object, tags_filters: list):
yield page_for_tags



def parse_tags(tags: Optional[List[tuple]]):
tags_ = defaultdict(list)
for key, value in tags:
Expand Down

0 comments on commit c6f27f5

Please sign in to comment.