You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 20, 2021. It is now read-only.
An-Introduction-To-Applied-Bioinformatics/iab/algorithms/__init__.py
Line 80 in 282f1ae
While using this code, you'll get an Attribute error:
AttributeError: 'function' object has no attribute 'tabulate'
That's because the function tabulate got a syntax like:
tabulate(object, attributes)
So the right way is to replace with:
return tabulate(rows, headers=col_headers, tablefmt='html')
This will lay to no error.
The text was updated successfully, but these errors were encountered: