(
self, args: argparse.Namespace, config: utils.CommandLineConfig
)
| 645 | parser.add_argument('asset_id', help='ID of the asset.') |
| 646 | |
| 647 | def run( |
| 648 | self, args: argparse.Namespace, config: utils.CommandLineConfig |
| 649 | ) -> None: |
| 650 | config.ee_init() |
| 651 | acl = ee.data.getAssetAcl(args.asset_id) |
| 652 | _pretty_print_json(acl) |
| 653 | |
| 654 | |
| 655 | class AclSetCommand: |
nothing calls this directly
no test coverage detected