Skip to content

Commit 42e2a5a

Browse files
Merge pull request #190 from benjeffery/fix-f-string
Fix missing f string
2 parents db103c4 + e95e344 commit 42e2a5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bio2zarr/vcf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2076,7 +2076,7 @@ def finalise_array(self, name):
20762076
def finalise(self, show_progress=False):
20772077
self.load_metadata()
20782078

2079-
logger.info("Scanning {self.num_partitions} partitions")
2079+
logger.info(f"Scanning {self.num_partitions} partitions")
20802080
missing = []
20812081
# TODO may need a progress bar here
20822082
for partition_id in range(self.num_partitions):

0 commit comments

Comments
 (0)