Skip to content

Commit 400bb79

Browse files
committed
Fix formatting issues
1 parent 375f9e1 commit 400bb79

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/bootstrap/bootstrap.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,9 @@ def verify(path, expected, verbose):
186186
verified = found == expected
187187
if not verified:
188188
eprint(
189-
"invalid checksum:\n"
190-
" found: {}\n"
191-
" expected: {}".format(found, expected)
189+
"invalid checksum:\n" " found: {}\n" " expected: {}".format(
190+
found, expected
191+
)
192192
)
193193
return verified
194194

src/bootstrap/bootstrap_test.py

-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,6 @@ def test_warnings(self):
252252

253253

254254
class TestRustBuild(unittest.TestCase):
255-
256255
@patch("os.path.exists")
257256
@patch("bootstrap.RustBuild.get_toml_static")
258257
def test_profile_none_with_non_git_source(self, mock_get_toml_static, mock_exists):

0 commit comments

Comments
 (0)