MCPcopy
hub / github.com/django/django / __init__

Method __init__

django/contrib/staticfiles/storage.py:512–517  ·  view source on GitHub ↗
(self, *args, manifest_storage=None, **kwargs)

Source from the content-addressed store, hash-verified

510 keep_intermediate_files = False
511
512 def __init__(self, *args, manifest_storage=None, **kwargs):
513 super().__init__(*args, **kwargs)
514 if manifest_storage is None:
515 manifest_storage = self
516 self.manifest_storage = manifest_storage
517 self.hashed_files, self.manifest_hash = self.load_manifest()
518
519 def read_manifest(self):
520 try:

Callers

nothing calls this directly

Calls 2

load_manifestMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected