Skip to content

Commit 4870df2

Browse files
committed
Pylint fix
1 parent 9c0f69c commit 4870df2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packet/log_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ def _format_cache(func):
3434
:return: The output of func.cache_info() as a compactly formatted string
3535
"""
3636
info = func.cache_info()
37-
return "{}[hits={}, misses={}, size={}/{}]".format(func.__name__, info.hits, info.misses, info.currsize, info.maxsize)
37+
return "{}[hits={}, misses={}, size={}/{}]".format(func.__name__, info.hits, info.misses, info.currsize,
38+
info.maxsize)
3839

3940

4041
# Tuple of lru_cache functions to log stats from

0 commit comments

Comments
 (0)