[SOLVED] Remove all fmodifiers at once

Hello i accidentaly added an fmodifier to all the fcurves i have for an armature. It would be a pain in the ass to click the remove button for every curve in the database and the problem is that when I put the mouse over the remove button the python path doesn’t appear.
I want:
for all the fcurves:
delete the f#$% fmodifier

I know python, I just don’t know how this remove thing works.
I go into the bpy api and I can only found _add _copy and _paste, that makes me think that I must remove the fmodifier from somwhere else but I don’t know where.
Could you give me a hand here?
Thanks

import bpy
ob = bpy.context.object # active object

for fcu in ob.animation_data.action.fcurves:
    for mod in fcu.modifiers:
        fcu.modifiers.remove(mod)

So thaaaaaat’s how it’s done! Well it worked of course. Thanks.
I’m going to deink a beer in your honor.