ZigRazor / PyStateMachine

Missing module/function docstring PY-D0003
Documentation
Minor
3 years ago3 years old
Docstring missing for read
 15changelog_url = 'https://github.com/ZigRazor/PyStateMachine/blob/master/CHANGELOG.md'
 16
 17
 18def read(*names, **kwargs): 19    with io.open(
 20        join(dirname(__file__), *names),
 21        encoding=kwargs.get('encoding', 'utf8')