Skip to content

Commit

Permalink
ruff fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
shroominic committed Oct 30, 2024
1 parent 94dfaf5 commit 492378f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions examples/file_conversion.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import httpx

from codeboxapi import CodeBox

codebox = CodeBox()
Expand Down
3 changes: 2 additions & 1 deletion examples/plot_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
from pathlib import Path

import httpx
from codeboxapi import CodeBox
from PIL import Image

from codeboxapi import CodeBox

codebox = CodeBox(api_key="local")

# download the iris dataset
Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os

import pytest

from codeboxapi import CodeBox

LOCALBOX = CodeBox(api_key="local")
Expand Down
1 change: 1 addition & 0 deletions tests/test_v01.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import pytest

from codeboxapi import CodeBox


Expand Down
1 change: 1 addition & 0 deletions tests/test_v02.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import time

import pytest

from codeboxapi import CodeBox, ExecChunk, ExecResult, RemoteFile


Expand Down

0 comments on commit 492378f

Please sign in to comment.