Skip to content

Commit ddf87fc

Browse files
fix: Format streaming_data_source.dart to comply with 80-character line limit
Split long lines at line 224 (logger.error call) and line 249 (_buildUri call) to meet Dart's 80-character line length requirement. Co-Authored-By: [email protected] <[email protected]>
1 parent 4f88179 commit ddf87fc

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

packages/common_client/lib/src/data_sources/streaming_data_source.dart

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,8 @@ final class StreamingDataSource implements DataSource {
221221
if (!_requestor.isValidChain(chainId)) {
222222
return;
223223
}
224-
_logger.error('encountered error with ping-triggered polling request: $err');
224+
_logger
225+
.error('encountered error with ping-triggered polling request: $err');
225226
await _pollWithRetry(chainId, isRetry: true);
226227
}
227228
}
@@ -246,7 +247,9 @@ final class StreamingDataSource implements DataSource {
246247
}
247248

248249
Uri _buildStreamingUri() {
249-
return _buildUri(_endpoints.streaming, _dataSourceConfig.streamingReportPath,
250+
return _buildUri(
251+
_endpoints.streaming,
252+
_dataSourceConfig.streamingReportPath,
250253
_dataSourceConfig.streamingGetPath);
251254
}
252255

0 commit comments

Comments
 (0)