Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiang Song committed Jun 4, 2024
1 parent 23e9c1e commit 710a1b3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions python/graphstorm/gconstruct/transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -1823,12 +1823,13 @@ def parse_label_conf(label_conf):
# But there can be exceptions as users want to
# provide masks through node features or
# some tasks are sharing the same mask.
logging.warning(f"Some train/val/test mask field "
"names are duplicated, please check: {mask_names}."
logging.warning("Some train/val/test mask field "
"names are duplicated, please check: %s."
"If you provide masks as node/edge features,"
"please ignore this warning."
"If you share train/val/test mask fields "
"across different tasks, please ignore this warning.")
"across different tasks, please ignore this warning.",
mask_names)

return label_ops

Expand Down

0 comments on commit 710a1b3

Please sign in to comment.