Skip to content

Commit

Permalink
fstring
Browse files Browse the repository at this point in the history
  • Loading branch information
jannisspeer committed Mar 22, 2024
1 parent fe8614d commit 1aba565
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snakemake_executor_plugin_htcondor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ def run_job(self, job: JobExecutorInterface):

print(os.getcwd())
print(os.listdir())
self.logger.debug("Current directory: ", os.getcwd())
self.logger.debug("Current directory content: ", os.listdir())
self.logger.debug(f"Current directory: {os.getcwd()}")
self.logger.debug(f"Current directory content: {os.listdir()}")
print(job.threads)
self.logger.debug(f"Job threads: {job.threads}")

Expand Down

0 comments on commit 1aba565

Please sign in to comment.