Skip to content

Commit

Permalink
Update test_memory_size_conversion.py
Browse files Browse the repository at this point in the history
./kyu_6/conversion_between_kilobyte_and_kibibyte/test_memory_size_conversion.py:65:17: E131 continuation line unaligned for hanging indent
                "<li>10 KiB -> 10.24 kB</li>"
                ^
./kyu_6/conversion_between_kilobyte_and_kibibyte/test_memory_size_conversion.py:66:45: W291 trailing whitespace
                "<li>1 kB -> 0.977 KiB</li>"
  • Loading branch information
ikostan committed Jan 2, 2025
1 parent ae98323 commit 84e842b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ def test_memorysize_conversion(self, memory_size, expected, err):
"including a unit and converts into the corresponding unit of the "
"other system:"
"<ul>"
"<li>10 KiB -> 10.24 kB</li>"
"<li>1 kB -> 0.977 KiB</li>"
"<li>10 TB -> 9.095 TiB</li>"
"<li>4.1 GiB -> 4.402 GB</li>"
"<li>10 KiB -> 10.24 kB</li>"
"<li>1 kB -> 0.977 KiB</li>"
"<li>10 TB -> 9.095 TiB</li>"
"<li>4.1 GiB -> 4.402 GB</li>"
"</ul>"
"</p>")
# pylint: enable-msg=R0801
Expand Down

0 comments on commit 84e842b

Please sign in to comment.