Skip to content

Commit e4df4d2

Browse files
committed
Fix weird comment wrapping
1 parent 7c84a7a commit e4df4d2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

python/controlled_generation.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,8 @@ class Recipe(TypedDict):
110110
response_mime_type="application/json", response_schema=list[Recipe]
111111
),
112112
)
113-
print(
114-
result
115-
) # Expected output: a JSON-parsed list with recipe names and grades (e.g., "a+")
113+
# Expected output: a JSON-parsed list with recipe names and grades (e.g., "a+")
114+
print(result)
116115
# [END enum_in_json]
117116

118117
def test_json_enum_raw(self):

0 commit comments

Comments
 (0)