Skip to content

Commit

Permalink
Fix error in the tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
UmSenhorQualquer committed Sep 27, 2018
1 parent 36bcfe4 commit c6b52e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __on_draw(self, figure):
x = range(len(data))

axes = figure.add_subplot(111)
axes.bar(left=x, height=data)
axes.bar(x, height=data)


axes = figure.add_subplot(222, projection='3d')
Expand Down

0 comments on commit c6b52e1

Please sign in to comment.