File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ <h1 class="title">Module <code>logrun.internals</code></h1>
94
94
def eval_checksum(path: str, state: Optional[xxhash.xxh3_64] = None, digest: bool = True) \
95
95
-> Optional[str]:
96
96
"""
97
- Evaluates the checksum of a given path (which can be either a file or a directory).
97
+ Evaluates the checksum of the contents of a given path (which can be either a file or a directory).
98
98
"""
99
99
100
100
path = os.path.abspath(os.path.realpath(path))
@@ -399,15 +399,15 @@ <h2 class="section-title" id="header-functions">Functions</h2>
399
399
< span > def < span class ="ident "> eval_checksum</ span > </ span > (< span > path: str, state: Optional[xxhash.xxh3_64] = None, digest: bool = True) ‑> Optional[str]</ span >
400
400
</ code > </ dt >
401
401
< dd >
402
- < div class ="desc "> < p > Evaluates the checksum of a given path (which can be either a file or a directory).</ p > </ div >
402
+ < div class ="desc "> < p > Evaluates the checksum of the contents of a given path (which can be either a file or a directory).</ p > </ div >
403
403
< details class ="source ">
404
404
< summary >
405
405
< span > Expand source code</ span >
406
406
</ summary >
407
407
< pre > < code class ="python "> def eval_checksum(path: str, state: Optional[xxhash.xxh3_64] = None, digest: bool = True) \
408
408
-> Optional[str]:
409
409
"""
410
- Evaluates the checksum of a given path (which can be either a file or a directory).
410
+ Evaluates the checksum of the contents of a given path (which can be either a file or a directory).
411
411
"""
412
412
413
413
path = os.path.abspath(os.path.realpath(path))
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ def ensure_dir_exists(path: str) -> str:
65
65
def eval_checksum (path : str , state : Optional [xxhash .xxh3_64 ] = None , digest : bool = True ) \
66
66
-> Optional [str ]:
67
67
"""
68
- Evaluates the checksum of a given path (which can be either a file or a directory).
68
+ Evaluates the checksum of the contents of a given path (which can be either a file or a directory).
69
69
"""
70
70
71
71
path = os .path .abspath (os .path .realpath (path ))
You can’t perform that action at this time.
0 commit comments