bitpanda-labs / loggo2

Open source Python logging utilities
MIT License
4 stars 12 forks source link

Explicit inherit from object? #62

Closed interrogator closed 5 years ago

interrogator commented 5 years ago

class Loggo(object): or class Loggo:? Believe we aren't maintaining Python 2 compatibility? @gcarq?

hukkin commented 5 years ago

class Loggo: please. We were never supposed to have Python 2 compatibility in the first place. setup.py says python_requires='>=3',

hukkin commented 5 years ago

Made the change here https://github.com/bitpanda-labs/loggo/pull/61

interrogator commented 5 years ago

Done. Lucky we had all three of us for this one.