Skip to content
This repository has been archived by the owner on Jun 5, 2023. It is now read-only.

Commit

Permalink
fixed pylint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
joecheuk committed Jan 26, 2018
1 parent 6170134 commit cdd5dce
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions google/cloud/security/scanner/scanners/ke_version_scanner.py
Expand Up @@ -105,9 +105,8 @@ def _retrieve(self):
Returns:
list: KE Cluster data.
"""
ke_clusters = (ke_dao
.KeDao(self.global_configs)
.get_clusters(self.snapshot_timestamp))
ke_clusters = (ke_dao.KeDao(self.global_configs)
.get_clusters(self.snapshot_timestamp))

return ke_clusters

Expand Down

0 comments on commit cdd5dce

Please sign in to comment.