Skip to content

Commit

Permalink
change wording
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere committed Mar 3, 2022
1 parent 63e4aac commit c6ce26f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
"items": {
"type": "string"
},
"description": "Comma-separated list of additional fields to include in replicating issues.",
"examples": ["Field A", "Field B"]
"description": "List of additional fields to include in replicating issues.",
"examples": ["customfield_10096", "customfield_10071"]
},
"expand_issue_changelog": {
"type": "boolean",
Expand Down

1 comment on commit c6ce26f

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SonarQube Report

SonarQube report for Airbyte Connectors Source Jira(#10835)

Measures

Name Value Name Value Name Value
Vulnerabilities 0 Coverage 0.0 Lines of Code 829
Lines to Cover 614 Quality Gate Status OK Security Rating A
Reliability Rating A Duplicated Lines (%) 3.8 Code Smells 10
Bugs 0 Duplicated Blocks 5 Blocker Issues 0
Critical Issues 0 Major Issues 2 Minor Issues 8

Detected Issues

Rule File Description Message
python:mypy_assignment (MINOR) source_jira/streams.py:118 Check that assigned value is compatible with target Incompatible types in assignment (expression has type "Optional[Any]", variable has type "Mapping[str, Any]") . Code line: latest_record = latest_record.get(self.cursor_field)
python:mypy_var_annotated (MINOR) source_jira/streams.py:432 Require variable annotation if type can't be inferred Need type annotation for "results" (hint: "results: Dict[, ] = ...") . Code line: results = {}
python:mypy_override (MINOR) source_jira/streams.py:900 Check that method override is compatible with base class Signature of "request_params" incompatible with supertype "JiraStream" . Code line: def request_params(self, stream_slice: Mapping[str, Any] = None, *...
python:mypy_arg_type (MINOR) source_jira/streams.py:901 Check argument types in calls Argument "stream_slice" to "request_params" of "JiraStream" has incompatible type "Optional[Mapping[str, Any]]"; expected "Mapping[str, Any]" . Code line: ... params = super().request_params(stream_slice=stream_slice, **kwarg...
python:mypy_index (MINOR) source_jira/streams.py:902 Check indexing operations Value of type "Optional[Mapping[str, Any]]" is not indexable . Code line: params["issueId"] = stream_slice["id"]
python:mypy_override (MINOR) source_jira/streams.py:290 Check that method override is compatible with base class Signature of "request_params" incompatible with supertype "JiraStream" . Code line: def request_params(self, **kwargs) -> MutableMapping[str, Any]:
python:S125 (MAJOR) source_jira/streams.py:625 Sections of code should not be commented out Remove this commented out code.
python:S125 (MAJOR) source_jira/streams.py:651 Sections of code should not be commented out Remove this commented out code.
python:S1481 (MINOR) source_jira/source.py:86 Unused local variables should be removed Remove the unused local variable "item".
python:mypy_import (MINOR) source_jira/streams.py:12 Require that imported module can be found or has stubs Library stubs not installed for "requests" (or incompatible with Python 3.7) . Code line: import requests

Coverage (0.0%)

File Coverage File Coverage
source_jira/init.py 0.0 source_jira/source.py 0.0
source_jira/streams.py 0.0

Please sign in to comment.