Skip to content

Commit

Permalink
Change: pycodestyle warning E226 fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
petersulyok committed Jan 6, 2024
1 parent 4c1ef5b commit 766be85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/diskinfo/partition.py
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ def get_part_size_in_hrf(self, units: int = 0) -> Tuple[float, str]:
nvme0n1p6 - 107.4 GB
"""
return size_in_hrf(self.__part_size*512, units)
return size_in_hrf(self.__part_size * 512, units)

def get_fs_label(self) -> str:
"""Returns the label of the file system. The result could be empty if the file system does not have a label.
Expand Down Expand Up @@ -736,7 +736,7 @@ def get_fs_free_size_in_hrf(self, units: int = 0) -> Tuple[float, str]:
nvme0n1p6 - 58.6 GB
"""
return size_in_hrf(self.__fs_free_size*512, units)
return size_in_hrf(self.__fs_free_size * 512, units)

def get_fs_mounting_point(self) -> str:
"""Returns the mounting point of the file system. The result could be empty if the partition does not
Expand Down

0 comments on commit 766be85

Please sign in to comment.