[PyCharm Tables] added more values for data types in the "python.dataview" group

GitOrigin-RevId: 478fb43193ffbd79de129e51237390fbadc39045
This commit is contained in:
Natalia.Murycheva
2024-07-09 11:32:52 +02:00
committed by intellij-monorepo-bot
parent 1c860f91fa
commit 6dcf2b2d34

View File

@@ -9,7 +9,7 @@ import com.intellij.openapi.project.Project
object PyDataViewerCollector : CounterUsagesCollector() {
private val GROUP = EventLogGroup("python.dataview", 2)
private val GROUP = EventLogGroup("python.dataview", 3)
enum class DataType(val typeName: String?) {
ARRAY("ndarray"),
@@ -17,6 +17,11 @@ object PyDataViewerCollector : CounterUsagesCollector() {
GEO_DATAFRAME("GeoDataFrame"),
SERIES("Series"),
GEO_SERIES("GeoSeries"),
EAGER_TENSOR("EagerTensor"),
RESOURCE_VARIABLE("ResourceVariable"),
SPARSE_TENSOR("SparseTensor"),
TORCH_TENSOR("Tensor"),
HF_DATASET("Dataset"),
UNKNOWN(null);
companion object {