Use new-style classes consistently for Python 3 support.
Also add the fixer for this to our list of fixers we check.
This commit is contained in:
parent
48f2caf12c
commit
e4f85d2462
2 changed files with 3 additions and 3 deletions
|
@ -44,7 +44,7 @@ import select
|
|||
|
||||
DEFAULT_SITE = "https://api.zulip.com"
|
||||
|
||||
class States:
|
||||
class States(object):
|
||||
Startup, ZulipToZephyr, ZephyrToZulip, ChildSending = list(range(4))
|
||||
CURRENT_STATE = States.Startup
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue