| 536 | return False |
| 537 | |
| 538 | class LegendStr(str): |
| 539 | # The legend string is such a string that only matches |
| 540 | # itself if it's the exact same object. This ensures |
| 541 | # legend items are listed separately even when they have the |
| 542 | # same string contents. Otherwise, Bokeh would always consider |
| 543 | # equal strings as one and the same legend item. |
| 544 | def __eq__(self, other): |
| 545 | return self is other |
| 546 | |
| 547 | ohlc_colors = colorgen() |
| 548 | indicator_figs = [] |