11 lines
271 B
Python
11 lines
271 B
Python
# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
class Box:
|
|
def __init__(self, inner):
|
|
self._inner = inner
|
|
|
|
@property
|
|
def inner(self):
|
|
return self._inner
|