以前作ったクラスに新しくメソッドを追加したいのですが上手くいきません。
目的は新しくdraw_barというメソッドをつかってグラフを書きたいと考えています。

[以前作ったもの]

import turtle

class Kame(turtle.Turtle):
    def __init__(self):
        super().__init__()
        self.shape("turtle")
        self.shapesize(2,2)

[追加したいメソッド]

def draw_bar(self,height,width=40):
    self.left(90)
    self.fd(height)
    self.right(90)
    self.fd(width)
    self.right(90)
    self.fd(height)
    self.left(90)

[ターミナルでの実行コード]

import kame
>>> hist_kame=kame.Kame()
>>> hist_kame.draw_bar(120)

[エラー]
AttributeError: 'Kame' object has no attribute 'draw_bar'

どうぞよろしくお願いいたします。