From 0080c9d0d6ad786e515ae471c97a383b8a59f5d4 Mon Sep 17 00:00:00 2001 From: kngwyu Date: Sat, 12 Dec 2020 14:24:24 +0900 Subject: [PATCH] Pythonify the README example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8d3cf0f..bf82cce 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ But if you want more customizable or minimal one, I recommend this. Importing `mujoco_maze` registers environments and environments listed below are available via `gym.make`. -E.g., +E.g.,: ```python import gym import mujoco_maze # noqa @@ -63,7 +63,7 @@ env = gym.make("Ant4Rooms-v0") You can define your own task by using components in `maze_task.py`, like: -``` +```python import gym import numpy as np from mujoco_maze.maze_env_utils import MazeCell