aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/matplotlib/py3/mpl_toolkits/mplot3d
diff options
context:
space:
mode:
authorrobot-contrib <robot-contrib@yandex-team.com>2023-12-09 08:28:54 +0300
committerrobot-contrib <robot-contrib@yandex-team.com>2023-12-09 08:46:50 +0300
commitf82bfd2a08a51c4815a4cde64974f819ed4f7128 (patch)
treec32e089b8c5795342a1d4f4db2a942f4d326fc9c /contrib/python/matplotlib/py3/mpl_toolkits/mplot3d
parent1a5ddc956c05a593cbe2d043d5f4e190602d9b98 (diff)
downloadydb-f82bfd2a08a51c4815a4cde64974f819ed4f7128.tar.gz
Update contrib/python/matplotlib/py3 to 3.8.2
Diffstat (limited to 'contrib/python/matplotlib/py3/mpl_toolkits/mplot3d')
-rw-r--r--contrib/python/matplotlib/py3/mpl_toolkits/mplot3d/axes3d.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/matplotlib/py3/mpl_toolkits/mplot3d/axes3d.py b/contrib/python/matplotlib/py3/mpl_toolkits/mplot3d/axes3d.py
index aeb6a66d2c..a74c11f54e 100644
--- a/contrib/python/matplotlib/py3/mpl_toolkits/mplot3d/axes3d.py
+++ b/contrib/python/matplotlib/py3/mpl_toolkits/mplot3d/axes3d.py
@@ -2374,7 +2374,7 @@ class Axes3D(Axes):
xs, ys, zs, s, c, color = cbook.delete_masked_points(
xs, ys, zs, s, c, kwargs.get('color', None)
)
- if kwargs.get('color', None):
+ if kwargs.get("color") is not None:
kwargs['color'] = color
# For xs and ys, 2D scatter() will do the copying.