Some docstrings

This commit is contained in:
Sybren A. Stüvel 2018-02-28 11:56:41 +01:00
parent 7541922b74
commit cb5eff2dcb

View File

@ -13,6 +13,7 @@ codes_to_skip = {
def deps(bfilepath: pathlib.Path) -> typing.Iterator[result.BlockUsage]: def deps(bfilepath: pathlib.Path) -> typing.Iterator[result.BlockUsage]:
"""Open the blend file and report its dependencies."""
log.info('Tracing %s', bfilepath) log.info('Tracing %s', bfilepath)
with blendfile.BlendFile(bfilepath) as bfile: with blendfile.BlendFile(bfilepath) as bfile:
@ -23,6 +24,7 @@ def deps(bfilepath: pathlib.Path) -> typing.Iterator[result.BlockUsage]:
def asset_holding_blocks(bfile: blendfile.BlendFile) -> typing.Iterator[blendfile.BlendFileBlock]: def asset_holding_blocks(bfile: blendfile.BlendFile) -> typing.Iterator[blendfile.BlendFileBlock]:
"""Generator, yield data blocks that could reference external assets."""
for block in bfile.blocks: for block in bfile.blocks:
assert isinstance(block, blendfile.BlendFileBlock) assert isinstance(block, blendfile.BlendFileBlock)
code = block.code code = block.code