Skip to content

Commit dbd979f

Browse files
committed
rm leftover
1 parent b3c2f2a commit dbd979f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Other optional parameters that can be passed to the REES constructor:
6565
- `binder_image_name_override`: Override the "found image name" whose container will be used to build the MyST article (optional, default: None)
6666
- `dotenv`: Path to a directory containing the .env file for authentication credentials to pull images from `registry_url` (optional, default: None)
6767
- `bh_image_prefix`: Binderhub names the images with a prefix, e.g., `<prefix>agahkarakuzu-2dmriscope-7a73fb`, typically set as `binder-`. This will be used in the regex pattern to find the "binderhub built image name" in the `registry_url`. See [reference docs](https://binderhub.readthedocs.io/en/latest/zero-to-binderhub/setup-binderhub.html) for more details.
68-
- `bh_private_project_name`: See [this issue ](https://github.com/jupyterhub/binderhub/issues/800) (optional, default: [`registry_url` without `http://` or `https://`])
68+
- `bh_project_name`: See [this issue ](https://github.com/jupyterhub/binderhub/issues/800) (optional, default: [`registry_url` without `http://` or `https://`])
6969

7070

7171
Note that in this context what is meant by "prefix" is not the same as in the reference docs. (optional, default: `binder-`)

myst_libre/rees/rees.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ def __init__(self, rees_dict):
1313
self.gh_repo_commit_hash = rees_dict.get('gh_repo_commit_hash', "latest")
1414
self.binder_image_name_override = rees_dict.get('binder_image_name_override', None)
1515
self.binder_image_tag = rees_dict.get('binder_image_tag', "latest")
16-
self.bh_private_project_name = rees_dict.get('bh_private_project_name', None)
1716
self.bh_image_prefix = rees_dict.get('bh_image_prefix', "binder-")
1817
self.bh_project_name = rees_dict.get('bh_project_name', None)
1918

0 commit comments

Comments
 (0)