Skip to content

Commit

Permalink
Fix lint issue not showing up locally
Browse files Browse the repository at this point in the history
  • Loading branch information
thpierce committed Feb 6, 2024
1 parent 170d603 commit 490ca12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def clear_requests(self) -> None:
self._export_requests.queue.clear()

@override
# pylint: disable=invalid-name
def Export(self, request: ExportMetricsServiceRequest, context: ServicerContext) -> ExportMetricsServiceResponse:
self._export_requests.put(request)
return ExportMetricsServiceResponse()
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def clear_requests(self) -> None:
self._export_requests.queue.clear()

@override
# pylint: disable=invalid-name
def Export(self, request: ExportTraceServiceRequest, context: ServicerContext) -> ExportTraceServiceResponse:
self._export_requests.put(request)
return ExportTraceServiceResponse()

0 comments on commit 490ca12

Please sign in to comment.