Skip to content

Commit 0c8573e

Browse files
committed
fix pylint
1 parent ad6bc19 commit 0c8573e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/telemetric/ga4/stats_uploader.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -201,12 +201,12 @@ def upload_all_stats(
201201
if f._get_counts()[0] > 0 # pylint: disable=protected-access
202202
),
203203
"total_function_calls": sum(
204-
f._get_counts()[0]
205-
for f in _wrapped # pylint: disable=protected-access
204+
f._get_counts()[0] # pylint: disable=protected-access
205+
for f in _wrapped
206206
),
207207
"total_errors": sum(
208-
f._get_counts()[1]
209-
for f in _wrapped # pylint: disable=protected-access
208+
f._get_counts()[1] # pylint: disable=protected-access
209+
for f in _wrapped
210210
),
211211
}
212212

0 commit comments

Comments
 (0)