Skip to content

Commit

Permalink
remove use of six module
Browse files Browse the repository at this point in the history
  • Loading branch information
d-w-moore committed Oct 22, 2024
1 parent bc80610 commit 4906dbf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions irods/models.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from __future__ import absolute_import
from irods.column import Column, Integer, String, DateTime, Keyword
import six


class ModelBase(type):
Expand All @@ -22,7 +21,7 @@ def __new__(cls, name, bases, attr):
return type.__new__(cls, name, bases, attr)


class Model(six.with_metaclass(ModelBase, object)):
class Model(metaclass = ModelBase):
pass


Expand Down

0 comments on commit 4906dbf

Please sign in to comment.