From 1c6afe43168abe5e27094c413c7f583127a3bb4f Mon Sep 17 00:00:00 2001 From: nicole pardal Date: Fri, 19 Sep 2025 08:06:45 -0700 Subject: [PATCH] lint formatting --- examples/browser_tool.py | 7 +++++-- examples/browser_tool_helpers.py | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/examples/browser_tool.py b/examples/browser_tool.py index 531b4c8..b751acb 100644 --- a/examples/browser_tool.py +++ b/examples/browser_tool.py @@ -1,9 +1,12 @@ from __future__ import annotations -from browser_tool_helpers import Browser -from ollama import Client + import os from typing import Any, Dict, List +from browser_tool_helpers import Browser + +from ollama import Client + def main() -> None: client = Client(headers={'Authorization': os.getenv('OLLAMA_API_KEY')}) diff --git a/examples/browser_tool_helpers.py b/examples/browser_tool_helpers.py index 501cdb8..74de948 100644 --- a/examples/browser_tool_helpers.py +++ b/examples/browser_tool_helpers.py @@ -1,9 +1,9 @@ from __future__ import annotations +import re from dataclasses import dataclass, field from datetime import datetime from typing import Any, Dict, List, Optional, Protocol, Tuple -import re from urllib.parse import urlparse from ollama import Client