Skip to content

Commit

Permalink
Added linting pragmas
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan committed Mar 16, 2017
1 parent 438ba39 commit b20c336
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion influxgraph/classes/leaf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
from __future__ import absolute_import
from graphite_api.node import LeafNode

class InfluxDBLeafNode(LeafNode): # pylint: disable=too-few-public-methods
class InfluxDBLeafNode(LeafNode):
"""Tell Graphite-Api that our leaf node supports multi-fetch"""
__fetch_multi__ = 'influxdb'
2 changes: 1 addition & 1 deletion influxgraph/classes/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

logger = logging.getLogger('influxgraph')

class Interval(object): # pylint: disable=too-few-public-methods
class Interval(object):
"""No-op Interval class used by Graphite-API for whisper backends"""
intervals = set()

Expand Down

0 comments on commit b20c336

Please sign in to comment.