Skip to content

Commit

Permalink
[PyCharm Tables] PY-77591 Added "is None"/"is not None" conditions to…
Browse files Browse the repository at this point in the history
… tables' filters #PY-77591 Fixed

GitOrigin-RevId: ad48262cab5d46f06b1ee7f72c764ee899f0c926
  • Loading branch information
Natalia.Murycheva authored and intellij-monorepo-bot committed Nov 30, 2024
1 parent 708f7bf commit 1114d15
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
import numpy as np
import io
try:
import tensorflow as tf
except ImportError:
pass
try:
import torch
except ImportError:
pass

TABLE_TYPE_NEXT_VALUE_SEPARATOR = '__pydev_table_column_type_val__'
MAX_COLWIDTH = 100000
Expand Down

0 comments on commit 1114d15

Please sign in to comment.