Skip to content

Commit

Permalink
hotfix correct use of metaclass
Browse files Browse the repository at this point in the history
  • Loading branch information
chaosbot committed Jun 3, 2017
1 parent 4a81239 commit 8637b39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/db_adapters/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import abc


class AbstractAdapter(abc.ABCMeta):
class AbstractAdapter(metaclass=abc.ABCMeta):
def __init__(self, config):
self.config = config

Expand Down

0 comments on commit 8637b39

Please sign in to comment.