Merge pull request #867 from tcely/patch-10

Be consistent with the tuple syntax
This commit is contained in:
meeb 2025-03-20 00:20:51 +11:00 committed by GitHub
commit 540408fc68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -198,6 +198,6 @@ def profile_func(func):
ps.sort_stats(
pstats.SortKey.CUMULATIVE
).print_stats()
return (result, (s.getvalue(), ps, s),)
return (result, (s.getvalue(), ps, s,),)
return wrapper