Skip to content

Commit

Permalink
Removed stray $ character in python format string
Browse files Browse the repository at this point in the history
  • Loading branch information
axdanbol committed Apr 1, 2024
1 parent 15fefba commit 1e77c18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cellxgene/extract_dataset_multi.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def print_error_status(self, msg):
Args:
msg (str): Error message
"""
print(f"Status {self.id}: ${msg}")
print(f"Status {self.id}: {msg}")


def main(args: argparse.Namespace):
Expand Down

0 comments on commit 1e77c18

Please sign in to comment.