kplot 1.1.32__tar.gz → 1.1.33__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: kplot
3
- Version: 1.1.32
3
+ Version: 1.1.33
4
4
  Summary: a matplotlib wrapper for keyan :-)
5
5
  Author: Keyan Gootkin
6
6
  Author-email: Keyan Gootkin <keyangootkin@gmail.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "kplot"
3
- version = "1.1.32"
3
+ version = "1.1.33"
4
4
  description = "a matplotlib wrapper for keyan :-)"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -84,7 +84,7 @@ def parse_color(
84
84
  """docstring"""
85
85
  match color:
86
86
  # given an rgb(a)
87
- case ((r, g, b) | (r, g, b, a)) if all(type(x) in Number.types for x in color):
87
+ case (r, g, b) | (r, g, b, a) if all(type(x) in Number.types for x in color):
88
88
  return color
89
89
  # otherwise assume arrays of numbers want to be color-mapped
90
90
  case x if type(color) in Array.types and type(color[0]) in Number.types:
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes