Skip to content

Commit beece5a

Browse files
authored
Removing non ascii characters from python files (#504)
1 parent d83f260 commit beece5a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/sagemaker/estimator.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -658,9 +658,9 @@ def __init__(self, entry_point, source_dir=None, hyperparameters=None, enable_cl
658658
>>> $ ls
659659
660660
>>> opt/ml/code
661-
>>> ├── train.py
662-
>>> ├── common
663-
>>> └── virtual-env
661+
>>> |------ train.py
662+
>>> |------ common
663+
>>> |------ virtual-env
664664
665665
hyperparameters (dict): Hyperparameters that will be used for training (default: None).
666666
The hyperparameters are made accessible as a dict[str, str] to the training code on SageMaker.

src/sagemaker/model.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,9 @@ def __init__(self, model_data, image, role, entry_point, source_dir=None, predic
153153
>>> $ ls
154154
155155
>>> opt/ml/code
156-
>>> ├── train.py
157-
>>> ├── common
158-
>>> └── virtual-env
156+
>>> |------ train.py
157+
>>> |------ common
158+
>>> |------ virtual-env
159159
160160
predictor_cls (callable[string, sagemaker.session.Session]): A function to call to create
161161
a predictor (default: None). If not None, ``deploy`` will return the result of invoking

0 commit comments

Comments
 (0)