-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update AWS v2 API docs #2288
base: master
Are you sure you want to change the base?
Update AWS v2 API docs #2288
Conversation
@@ -24,13 +23,14 @@ def openapi_types(_): | |||
"include_only": "include_only", | |||
} | |||
|
|||
def __init__(self_, include_only: List[str], **kwargs): | |||
def __init__(self_, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, **kwargs): | |
def __init__(self, **kwargs): |
first parameter of a class function should be self (...read more)
In a class method (that is not a class method nor a static method), the first argument must be self
by convention.
Learn More
@@ -22,13 +21,14 @@ def openapi_types(_): | |||
"exclude_only": "exclude_only", | |||
} | |||
|
|||
def __init__(self_, exclude_only: List[str], **kwargs): | |||
def __init__(self_, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, **kwargs): | |
def __init__(self, **kwargs): |
first parameter of a class function should be self (...read more)
In a class method (that is not a class method nor a static method), the first argument must be self
by convention.
Learn More
@@ -21,13 +21,14 @@ def openapi_types(_): | |||
"include_all": "include_all", | |||
} | |||
|
|||
def __init__(self_, include_all: bool, **kwargs): | |||
def __init__(self_, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 Code Quality Violation
def __init__(self_, **kwargs): | |
def __init__(self, **kwargs): |
first parameter of a class function should be self (...read more)
In a class method (that is not a class method nor a static method), the first argument must be self
by convention.
Learn More
321ebc3
to
f2b78e3
Compare
f2b78e3
to
80f0e04
Compare
See DataDog/datadog-api-spec#3329
Test branch datadog-api-spec/test/katie.mckew/awscustexp-113-improve-v2-aws-docs