Skip to content

Commit

Permalink
ruff reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
danellecline committed Sep 15, 2024
1 parent 46fb3b9 commit 66cde55
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pbp/logging_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ def create_logger_info(log_filename: str):
log.add(
sink=open(log_filename, "w"), level="DEBUG", format=default_format, enqueue=True
)
return log
return log
3 changes: 2 additions & 1 deletion pbp/meta_gen/gen_iclisten.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,11 @@ def run(self):
self.df[self.df["start"] >= self.start],
self.json_base_dir,
self.start,
self.end
self.end,
)
self.log.info(f"Coverage plot saved to {plot_file}")


if __name__ == "__main__":
from pbp.logging_helper import create_logger

Expand Down
2 changes: 1 addition & 1 deletion pbp/meta_gen/gen_nrs.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def run(self):
self.df[self.df["start"] >= self.start],
self.json_base_dir,
self.start,
self.end
self.end,
)
self.log.info(f"Coverage plot saved to {plot_file}")

Expand Down

0 comments on commit 66cde55

Please sign in to comment.