Skip to content

Commit

Permalink
Fix AttributeError 'GrouperView' object has no attribute 'join'
Browse files Browse the repository at this point in the history
  • Loading branch information
jurihock committed Apr 1, 2024
1 parent 48042d7 commit 8751bd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/stftpitchshift/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ def number(value): return int(value[:-1]) * 1024 if value.lower().endswith('k'
spectrogramY = figure.add_subplot(2, 1, 2, title='Output Spectrogram')
spectrogram(framesY, framesize, hopsize, samplerate)

spectrogramX.get_shared_x_axes().join(spectrogramX, spectrogramY)
spectrogramX.get_shared_y_axes().join(spectrogramX, spectrogramY)
spectrogramX.sharex(spectrogramY)
spectrogramX.sharey(spectrogramY)

plot.tight_layout()

Expand Down

0 comments on commit 8751bd5

Please sign in to comment.