-
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
Make some amendments to the new mobiles schema #2215
Make some amendments to the new mobiles schema #2215
Conversation
} | ||
|
||
def __init__( | ||
self_, |
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
self_, | |
self, |
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
"name": "name", | ||
} | ||
|
||
def __init__(self_, example: Union[str, UnsetType] = unset, name: Union[str, UnsetType] = unset, **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_, example: Union[str, UnsetType] = unset, name: Union[str, UnsetType] = unset, **kwargs): | |
def __init__(self, example: Union[str, UnsetType] = unset, name: Union[str, UnsetType] = unset, **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
} | ||
|
||
def __init__(self_, items: Union[SyntheticsMobileTestBindingItems, UnsetType] = unset, **kwargs): | ||
def __init__( | ||
self_, |
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
self_, | |
self, |
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
} | ||
|
||
def __init__( | ||
self_, positions: Union[List[SyntheticsMobileStepParamsPositionPositionsItems], UnsetType] = unset, **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
self_, positions: Union[List[SyntheticsMobileStepParamsPositionPositionsItems], UnsetType] = unset, **kwargs | |
self, positions: Union[List[SyntheticsMobileStepParamsPositionPositionsItems], UnsetType] = unset, **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
} | ||
|
||
def __init__( | ||
self_, |
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
self_, | |
self, |
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
property_names: Union[SyntheticsMobileTestInitialApplicationArgumentsPropertyNames, UnsetType] = unset, | ||
**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
} | ||
|
||
def __init__( | ||
self_, |
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
self_, | |
self, |
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
"y": "y", | ||
} | ||
|
||
def __init__(self_, x: Union[int, UnsetType] = unset, y: Union[int, UnsetType] = unset, **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_, x: Union[int, UnsetType] = unset, y: Union[int, UnsetType] = unset, **kwargs): | |
def __init__(self, x: Union[int, UnsetType] = unset, y: Union[int, UnsetType] = unset, **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
} | ||
|
||
def __init__( | ||
self_, |
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
self_, | |
self, |
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
"y": "y", | ||
} | ||
|
||
def __init__(self_, x: Union[int, UnsetType] = unset, y: Union[int, UnsetType] = unset, **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_, x: Union[int, UnsetType] = unset, y: Union[int, UnsetType] = unset, **kwargs): | |
def __init__(self, x: Union[int, UnsetType] = unset, y: Union[int, UnsetType] = unset, **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
10e19a2
to
3f34381
Compare
to: Union[str, UnsetType] = unset, | ||
**kwargs, | ||
): | ||
def __init__(self_, day: int, _from: str, to: str, **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_, day: int, _from: str, to: str, **kwargs): | |
def __init__(self, day: int, _from: str, to: str, **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
@@ -30,13 +28,13 @@ def openapi_types(_): | |||
"execution_rule": "executionRule", | |||
} | |||
|
|||
def __init__(self_, execution_rule: Union[SyntheticsTestExecutionRule, UnsetType] = unset, **kwargs): | |||
def __init__(self_, execution_rule: SyntheticsTestExecutionRule, **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_, execution_rule: SyntheticsTestExecutionRule, **kwargs): | |
def __init__(self, execution_rule: SyntheticsTestExecutionRule, **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
timezone: Union[str, UnsetType] = unset, | ||
**kwargs, | ||
): | ||
def __init__(self_, timeframes: List[SyntheticsTestOptionsSchedulingTimeframe], timezone: str, **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_, timeframes: List[SyntheticsTestOptionsSchedulingTimeframe], timezone: str, **kwargs): | |
def __init__(self, timeframes: List[SyntheticsTestOptionsSchedulingTimeframe], timezone: str, **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
"y": "y", | ||
} | ||
|
||
def __init__(self_, x: Union[int, UnsetType] = unset, y: Union[int, UnsetType] = unset, **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_, x: Union[int, UnsetType] = unset, y: Union[int, UnsetType] = unset, **kwargs): | |
def __init__(self, x: Union[int, UnsetType] = unset, y: Union[int, UnsetType] = unset, **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
8ec7f76
to
2bc0b95
Compare
} | ||
|
||
def __init__(self_, pattern: Union[str, UnsetType] = unset, **kwargs): | ||
def __init__(self_, example: str, name: str, **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_, example: str, name: str, **kwargs): | |
def __init__(self, example: str, name: str, **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
30e7abd
to
5065fa4
Compare
} | ||
|
||
def __init__(self_, renotify_interval: Union[int, UnsetType] = unset, **kwargs): | ||
def __init__( | ||
self_, |
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
self_, | |
self, |
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
} | ||
|
||
def __init__(self_, renotify_interval: Union[int, UnsetType] = unset, **kwargs): | ||
def __init__( | ||
self_, |
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
self_, | |
self, |
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
472d06b
to
130a4b5
Compare
* Regenerate client from commit 2e09a3ec of spec repo * pre-commit fixes --------- Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com> 0d15a65
See DataDog/datadog-api-spec#3190
Test branch datadog-api-spec/test/teodor.todorv/SYNTH-13677/make-adjustments-to-schema