Skip to content

Commit 897c27d

Browse files
author
Christopher Rabotin
committed
Removed additional args when calling super new for Py3. Must fix build.
1 parent f368efa commit 897c27d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

influxdb/helper.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
Helper class for InfluxDB
44
"""
55
from collections import namedtuple, defaultdict
6-
import six
76

87
class SeriesHelper(object):
98
'''
@@ -70,7 +69,7 @@ def __new__(cls, *args, **kwargs):
7069
cls._datapoints = defaultdict(list)
7170
cls._type = namedtuple(cls.__name__, cls._fields)
7271

73-
return super(SeriesHelper, cls).__new__(cls, *args, **kwargs)
72+
return super(SeriesHelper, cls).__new__(cls)
7473

7574
def __init__(self, **kw):
7675
'''

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy