Skip to content

Commit

Permalink
Removed unused imports in drop
Browse files Browse the repository at this point in the history
Also added pylint to recommended extesions
  • Loading branch information
javiber committed Nov 17, 2023
1 parent 6d47f38 commit 9494348
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"recommendations": [
"esbenp.prettier-vscode"
"esbenp.prettier-vscode",
"ms-python.pylint"
]
}
4 changes: 0 additions & 4 deletions temporian/core/operators/drop.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,11 @@
"""Drop operator class and public API function definitions."""

from typing import List, Union
from temporian.core import operator_lib
from temporian.core.compilation import compile
from temporian.core.data.node import (
EventSetNode,
create_node_new_features_new_sampling,
)
from temporian.core.operators.base import Operator
from temporian.core.typing import EventSetOrNode
from temporian.proto import core_pb2 as pb
from temporian.utils.typecheck import typecheck
from temporian.core.operators.select import select

Expand Down

0 comments on commit 9494348

Please sign in to comment.