We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad6bc19 commit 0c8573eCopy full SHA for 0c8573e
1 file changed
src/telemetric/ga4/stats_uploader.py
@@ -201,12 +201,12 @@ def upload_all_stats(
201
if f._get_counts()[0] > 0 # pylint: disable=protected-access
202
),
203
"total_function_calls": sum(
204
- f._get_counts()[0]
205
- for f in _wrapped # pylint: disable=protected-access
+ f._get_counts()[0] # pylint: disable=protected-access
+ for f in _wrapped
206
207
"total_errors": sum(
208
- f._get_counts()[1]
209
+ f._get_counts()[1] # pylint: disable=protected-access
210
211
}
212
0 commit comments