MCPcopy Create free account
hub / github.com/Breakthrough/PySceneDetect / FakeTqdmObject

Class FakeTqdmObject

scenedetect/platform.py:54–67  ·  view source on GitHub ↗

Provides a no-op tqdm-like object.

Source from the content-addressed store, hash-verified

52
53
54class FakeTqdmObject:
55 """Provides a no-op tqdm-like object."""
56
57 def __init__(self, **kwargs):
58 """No-op."""
59
60 def update(self, n=1):
61 """No-op."""
62
63 def close(self):
64 """No-op."""
65
66 def set_description(self, desc=None, refresh=True):
67 """No-op."""
68
69
70class FakeTqdmLoggingRedirect:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected