This works: ``` await Actor.apify_client.dataset("dataset-id").list_items(limit=1) ``` This doesn't: ``` dataset = await Actor.open_dataset(id="dataset-id") data = await dataset.get_data() ``` Fails with: ``` RuntimeError: Dataset with id "dataset-id" does not exist! ``` According to the [documentation](https://docs.apify.com/sdk/python/reference/class/Actor#open_dataset), opening the dataset via ID should be supported.