Skip to content

Commit

Permalink
ruff check
Browse files Browse the repository at this point in the history
  • Loading branch information
dtria91 committed Dec 18, 2024
1 parent 19075d9 commit 728a21a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/radicalbit_platform_sdk/apis/model.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import json
from io import BytesIO
import json
import os
from typing import Dict, List, Optional
from uuid import UUID
Expand Down Expand Up @@ -532,7 +532,7 @@ def load_completion_dataset(
"""

try:
with open(file_name, 'r', encoding='utf-8') as f:
with open(file_name, encoding='utf-8') as f:
raw_json = json.load(f)
validated_json_bytes = self.__validate_json(raw_json)
except Exception as e:
Expand Down

0 comments on commit 728a21a

Please sign in to comment.