def _finish_response()

in aws_jupyter_proxy/awsproxy.py [0:0]


    def _finish_response(self, response: HTTPResponse):
        for name, value in response.headers.get_all():
            if self._is_blacklisted_response_header(name, value):
                continue
            self.set_header(name, value)
        super(APIHandler, self).finish(response.body or None)