Skip to content

Commit

Permalink
address a self-review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
gargnitingoogle committed Oct 10, 2024
1 parent 02ae0dd commit bdeb538
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@

class GsheetTest(unittest.TestCase):

# @classmethod
# def setUpClass(self):
# self.project_id = 'gcs-fuse-test'

def test_append_data_to_gsheet(self):
_DEFAULT_GSHEET_ID = '1s9DCis6XZ_oHRIFTy0F8yVN93EGA2Koks_pzpCqAIS4'

Expand Down
2 changes: 1 addition & 1 deletion perfmetrics/scripts/testing_on_gke/examples/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ def run_command(command: str) -> int:
Returns exit-code which would be non-zero for error.
"""
result = subprocess.run(
[word for word in command.split(" ") if (word and not str.isspace(word))],
[word for word in command.split(" ") if (word and word.strip())],
capture_output=True,
text=True,
)
Expand Down

0 comments on commit bdeb538

Please sign in to comment.