Skip to content

Commit cc94e0d

Browse files
Merge pull request #7 from pnnl/develop
Develop
2 parents 13fda3d + a4c5b0e commit cc94e0d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

hypernetx/drawing/rubber_band.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,7 @@ def draw(H,
437437
color=edges_kwargs['edgecolors'],
438438
backgroundcolor=(1, 1, 1, label_alpha),
439439
labels=labels,
440+
ax=ax,
440441
**edge_labels_kwargs
441442
)
442443

@@ -468,6 +469,6 @@ def draw(H,
468469
else:
469470
ax.axis('equal')
470471

471-
plt.xticks([])
472-
plt.yticks([])
472+
ax.xaxis.set_ticks([])
473+
ax.yaxis.set_ticks([])
473474

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22
import sys, os.path
33

4-
__version__ = '0.2.1'
4+
__version__ = '0.2.2'
55

66
if sys.version_info < (3,6):
77
sys.exit('HyperNetX requires Python 3.6 or later.')

0 commit comments

Comments
 (0)