Signed-off-by: JoshuaL3000 <joshua.jian.ern.liew@intel.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
11 lines
298 B
Python
11 lines
298 B
Python
# Copyright (C) 2024 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
class Component:
|
|
def __init__(self, request_handler):
|
|
self.request_handler = request_handler
|
|
|
|
def _make_request(self, *args, **kwargs):
|
|
return self.request_handler._make_request(*args, **kwargs)
|