Skip to content

Commit a64df3a

Browse files
committed
lint formatting
1 parent 6d07f25 commit a64df3a

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

examples/browser_tool.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
from __future__ import annotations
2-
from browser_tool_helpers import Browser
3-
from ollama import Client
2+
43
import os
54
from typing import Any, Dict, List
65

6+
from browser_tool_helpers import Browser
7+
8+
from ollama import Client
9+
710

811
def main() -> None:
912
client = Client(headers={'Authorization': os.getenv('OLLAMA_API_KEY')})

examples/browser_tool_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from __future__ import annotations
22

3+
import re
34
from dataclasses import dataclass, field
45
from datetime import datetime
56
from typing import Any, Dict, List, Optional, Protocol, Tuple
6-
import re
77
from urllib.parse import urlparse
88

99
from ollama import Client

0 commit comments

Comments
 (0)