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

Commit

Permalink
Fix Pylint violations R0902, R0903
Browse files Browse the repository at this point in the history
  • Loading branch information
sopel committed Apr 15, 2013
1 parent d75f912 commit 962104c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions botocross/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,5 +119,6 @@ def filter_regions_s3(regions, region):
regions = filter(lambda x: is_region_selected_s3(x, region), regions)
return regions

# pylint: disable=R0903
class ExitCodes:
(OK, FAIL) = range(0, 2)
1 change: 1 addition & 0 deletions botocross/iam/accountinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import botocross.iam
import logging

# pylint: disable=R0903
class AccountInfo:
"""
Represents an AWS Account
Expand Down
1 change: 1 addition & 0 deletions botocross/iam/userinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import botocross.iam
import logging

# pylint: disable=R0902,R0903
class UserInfo:
"""
Represents an AWS User
Expand Down

0 comments on commit 962104c

Please sign in to comment.