ponnhide / pyCircos

python Circos
GNU General Public License v3.0
339 stars 66 forks source link

Bug class Gcircle(object): #5

Closed JLTrincado closed 3 years ago

JLTrincado commented 3 years ago

Dear authors,

Class definition in python is without parenthesis. Line 22 on pycircos.py shows like this:

class Gcircle(object):

But it should be without the parenthesis:

class Gcircle:

Changing this, the package goes smooth.

Thanks for this tool.

Best, Juanlu.

ponnhide commented 3 years ago

You are right... I forgot that Python3 doesn't need parenthesis for a class declaration. I modified the code.