Skip to content

Commit

Permalink
Fix daily build failure and update module owners
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaiyarasiganeshalingam committed Oct 6, 2023
1 parent 99fe0e8 commit d590f27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# See: https://help.github.com/articles/about-codeowners/

# These owners will be the default owners for everything in the repo.
* @indikasampath2000 @abeykoon @Chuhaa
* @NipunaRanasinghe @kalaiyarasiganeshalingam
4 changes: 2 additions & 2 deletions examples/update_chart.bal
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ public function main() {
left: 99
};

excel:Worksheet|error response = excelClient->updateChart(workbookIdOrPath, "worksheetName", "chartName",
excel:Chart|error response = excelClient->updateChart(workbookIdOrPath, "worksheetName", "chartName",
updateChart);
if (response is excel:Worksheet) {
if (response is excel:Chart) {
log:printInfo(response.toString());
}
}

0 comments on commit d590f27

Please sign in to comment.