chalice/deploy/packager.py [184:193]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if not self._osutils.file_exists(requirements_filename):
            contents = b''
        else:
            contents = cast(
                bytes,
                self._osutils.get_file_contents(
                    requirements_filename, binary=True
                ),
            )
        h = hashlib.md5(contents)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



chalice/deploy/packager.py [452:461]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if not self._osutils.file_exists(requirements_filename):
            contents = b''
        else:
            contents = cast(
                bytes,
                self._osutils.get_file_contents(
                    requirements_filename, binary=True
                ),
            )
        h = hashlib.md5(contents)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



