Skip to content

Commit e0d6aa3

Browse files
committed
Format sandbox/main.py with ruff
1 parent b78006d commit e0d6aa3

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

sandbox/main.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@
2525

2626
load_dotenv()
2727

28+
2829
@sandbox(
29-
cloud_profile_id=os.getenv('CLOUD_PROFILE_ID'),
30-
cloud_proxy_country_code=os.getenv('CLOUD_PROXY_COUNTRY_CODE'),
31-
cloud_timeout=int(os.getenv('CLOUD_TIMEOUT', 60)),
30+
cloud_profile_id=os.getenv("CLOUD_PROFILE_ID"),
31+
cloud_proxy_country_code=os.getenv("CLOUD_PROXY_COUNTRY_CODE"),
32+
cloud_timeout=int(os.getenv("CLOUD_TIMEOUT", 60)),
3233
)
3334
async def main(browser: Browser):
3435
llm = ChatBrowserUse()
@@ -43,5 +44,6 @@ async def main(browser: Browser):
4344

4445
await agent.run()
4546

47+
4648
if __name__ == "__main__":
4749
asyncio.run(main())

0 commit comments

Comments
 (0)