Skip to content

Commit

Permalink
fix: minor update after applying suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejmajek committed Sep 4, 2024
1 parent 422e3b2 commit 9d56dbd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion tests/core/test_rai_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
# limitations under the License.

import os
import uuid
from pathlib import Path
from unittest.mock import MagicMock, patch

Expand Down
2 changes: 1 addition & 1 deletion tests/messages/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
from io import BytesIO

import numpy as np
import pytest
from PIL import Image

from rai.messages.utils import preprocess_image
Expand All @@ -38,4 +39,3 @@ def decode_image(base64_string: str) -> Image.Image:
def test_preprocess_image(test_image):
base64_image = preprocess_image(test_image)
_ = decode_image(base64_image) # noqa: F841

0 comments on commit 9d56dbd

Please sign in to comment.