Skip to content

Commit

Permalink
fix pylint check problem
Browse files Browse the repository at this point in the history
Signed-off-by: IcyFeather <mengzhuo.happy@gmail.com>
  • Loading branch information
IcyFeather233 committed Oct 20, 2024
1 parent 0a98045 commit bed5fd8
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions core/testenvmanager/dataset/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,16 @@

import os
import tempfile
import json

import pandas as pd
from sedna.datasources import CSVDataParse, TxtDataParse, JSONDataParse, JsonlDataParse, JSONMetaDataParse

# pylint: disable=no-name-in-module
from sedna.datasources import (
CSVDataParse,
TxtDataParse,
JSONDataParse,
JsonlDataParse,
JSONMetaDataParse,
)
# pylint: enable=no-name-in-module
from core.common import utils
from core.common.constant import DatasetFormat

Expand Down

0 comments on commit bed5fd8

Please sign in to comment.