Skip to content

Commit

Permalink
Make Python code formatter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkudrin committed Oct 10, 2024
1 parent ef848fd commit a469050
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,14 @@ def set_use_source_cache_and_test(self, is_cache_enabled):

if is_cache_enabled:
self.assertFalse(
is_file_overwritten, "Source cache is enabled, but writing to file succeeded"
is_file_overwritten,
"Source cache is enabled, but writing to file succeeded",
)

if not is_cache_enabled:
self.assertTrue(
is_file_overwritten, "Source cache is disabled, but writing to file failed"
is_file_overwritten,
"Source cache is disabled, but writing to file failed",
)

def overwriteFile(self, src):
Expand Down

0 comments on commit a469050

Please sign in to comment.