Skip to content

Commit 02b9b5d

Browse files
committed
style: cleanup whitespace in tuning job files
1 parent 2015105 commit 02b9b5d

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

genai/tuning/test_tuning_examples.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
# limitations under the License.
1414

1515
from datetime import datetime as dt
16-
1716
from unittest.mock import call, MagicMock, patch
1817

1918
from google.cloud import storage

genai/tuning/tuning_job_cancel.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@
1616

1717
from google import genai
1818
from google.genai.types import HttpOptions
19-
def cancel_tuning_job(tuning_job_name: str) -> None:
2019

20+
21+
def cancel_tuning_job(tuning_job_name: str) -> None:
2122
client = genai.Client(http_options=HttpOptions(api_version="v1"))
2223

2324
# Cancel the tuning job.
2425
# Eg. tuning_job_name = "projects/123456789012/locations/us-central1/tuningJobs/123456789012345"
2526
client.tunings.cancel(name=tuning_job_name)
2627

27-
# [END googlegenaisdk_tuning_job_cancel]
28-
28+
29+
# [END googlegenaisdk_tuning_job_cancel]

0 commit comments

Comments
 (0)