Skip to content

Commit

Permalink
Fix pylint
Browse files Browse the repository at this point in the history
Signed-off-by: Kim, Vinnam <[email protected]>
  • Loading branch information
vinnamkim committed Feb 2, 2023
1 parent 9a78575 commit aff14d0
Show file tree
Hide file tree
Showing 12 changed files with 1 addition and 11 deletions.
1 change: 1 addition & 0 deletions datumaro/util/telemetry_utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pylint: disable=reimported
# Copyright (C) 2021 Intel Corporation
#
# SPDX-License-Identifier: MIT
Expand Down
1 change: 0 additions & 1 deletion datumaro/util/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import unittest
import unittest.mock
import warnings
from copy import deepcopy
from enum import Enum, auto
from glob import glob
from typing import Collection, Optional, Union
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_common_semantic_segmentation_format.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import os.path as osp
from collections import OrderedDict
from unittest import TestCase

Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_imagenet_format.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import os.path as osp
import pickle # nosec - disable B403:import_pickle check
from unittest import TestCase

Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_kinetics_format.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import os.path as osp
from unittest import TestCase

from datumaro.components.annotation import Label
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_market1501_format.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import os.path as osp
from unittest import TestCase

import numpy as np
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_mpii_format.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import os.path as osp
from unittest import TestCase

import numpy as np
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_mpii_json_format.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import os.path as osp
from unittest import TestCase

import numpy as np
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_nyu_depth_v2_format.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import os.path as osp
from unittest import TestCase

import numpy as np
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_synthia_format.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import os.path as osp
from unittest import TestCase

import numpy as np
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_vott_csv_format.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import os.path as osp
from unittest import TestCase

import numpy as np
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_vott_json_format.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import os.path as osp
from unittest import TestCase

import numpy as np
Expand Down

0 comments on commit aff14d0

Please sign in to comment.