ErnGusMik / python-tello

Missing module/function docstring PY-D0003
Documentation
Minor
1 occurrence in this check
Docstring missing for readme
 2from setuptools import setup
 3
 4
 5def readme(): 6    with open("README.md") as f:
 7        return f.read()
 8