mirror of https://github.com/peter4431/rq.git
Drop python2-specific syntax (#1674)
* Drop syntax required only for Python 2 * Drop python2-style super() calls Co-authored-by: Selwin Ong <selwin.ong@gmail.com>main
parent
61a4a1720b
commit
d5175c38da
@ -1,5 +1 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import (absolute_import, division, print_function,
|
||||
unicode_literals)
|
||||
|
||||
VERSION = '1.10.1'
|
||||
|
@ -1,5 +1 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import (absolute_import, division, print_function,
|
||||
unicode_literals)
|
||||
|
||||
REDIS_HOST = "testhost.example.com"
|
||||
|
@ -1,6 +1,2 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import (absolute_import, division, print_function,
|
||||
unicode_literals)
|
||||
|
||||
REDIS_HOST = "testhost.example.com"
|
||||
SENTRY_DSN = 'https://123@sentry.io/123'
|
||||
|
Loading…
Reference in New Issue