Skip to content

Commit

Permalink
pylint work because of a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mahtin committed Dec 22, 2016
1 parent a52baa4 commit b8fe4da
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions CloudFlare/api_v4.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,13 +178,12 @@ def zones_analytics(self):
branch = getattr(self, "zones")
setattr(branch, "analytics",
self._add_unused(base, "zones", "analytics"))
zones_analytics = getattr(getattr(self, "zones"), "analytics")
setattr(zones_analytics, "colos",
branch = getattr(getattr(self, "zones"), "analytics")
setattr(branch, "colos",
self._add_with_auth(base, "zones", "analytics/colos"))
setattr(zones_analytics, "dashboard",
setattr(branch, "dashboard",
self._add_with_auth(base, "zones", "analytics/dashboard"))


def zones_firewall(self):
""" API core commands for Cloudflare API"""

Expand Down

0 comments on commit b8fe4da

Please sign in to comment.