ponnhide/pyCircos

Bug class Gcircle(object):

Closed this issue · 1 comments

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.

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