Skip to content

Commit

Permalink
stat_visualization mask_user_infoの不具合修正 (#888)
Browse files Browse the repository at this point in the history
* エラー判定の修正

* version uup
  • Loading branch information
yuji38kwmt authored Nov 1, 2022
1 parent 91a652c commit cab29b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion annofabcli/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.73.0"
__version__ = "1.73.1"
4 changes: 2 additions & 2 deletions annofabcli/stat_visualization/mask_visualization_dir.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ def mask_visualization_dir(
exclude_masked_user_for_line_graph: bool = False,
) -> None:
user_performance = project_dir.read_user_performance()
if user_performance.empty():
logger.warning(f"メンバごとの生産性と品質情報が空であるため、ユーザー情報をマスクできません。終了します。")
if user_performance.is_empty():
logger.warning("メンバごとの生産性と品質情報が空であるため、ユーザー情報をマスクできません。終了します。")
return

# マスクするユーザの情報を取得する
Expand Down
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 = "annofabcli"
version = "1.73.0"
version = "1.73.1"
description = "Utility Command Line Interface for AnnoFab"
authors = ["yuji38kwmt"]
license = "MIT"
Expand Down

0 comments on commit cab29b1

Please sign in to comment.