Skip to content

Commit

Permalink
some typos in agents file (#1008)
Browse files Browse the repository at this point in the history
  • Loading branch information
thesagarsehgal authored and antmarakis committed Jan 19, 2019
1 parent 526e977 commit 25c2a9b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions agents.ipynb
Expand Up @@ -98,7 +98,7 @@
"\n",
"class Park(Environment):\n",
" def percept(self, agent):\n",
" '''prints & return a list of things that are in our agent's location'''\n",
" '''return a list of things that are in our agent's location'''\n",
" things = self.list_things_at(agent.location)\n",
" return things\n",
" \n",
Expand Down Expand Up @@ -307,7 +307,7 @@
"source": [
"class Park2D(XYEnvironment):\n",
" def percept(self, agent):\n",
" '''prints & return a list of things that are in our agent's location'''\n",
" '''return a list of things that are in our agent's location'''\n",
" things = self.list_things_at(agent.location)\n",
" return things\n",
" \n",
Expand Down Expand Up @@ -536,7 +536,7 @@
"source": [
"class Park2D(XYEnvironment):\n",
" def percept(self, agent):\n",
" '''prints & return a list of things that are in our agent's location'''\n",
" '''return a list of things that are in our agent's location'''\n",
" things = self.list_things_at(agent.location)\n",
" return things\n",
" \n",
Expand Down Expand Up @@ -649,7 +649,7 @@
"source": [
"class GraphicPark(GraphicEnvironment):\n",
" def percept(self, agent):\n",
" '''prints & return a list of things that are in our agent's location'''\n",
" '''return a list of things that are in our agent's location'''\n",
" things = self.list_things_at(agent.location)\n",
" return things\n",
" \n",
Expand Down Expand Up @@ -1441,7 +1441,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.5"
"version": "3.6.7"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 25c2a9b

Please sign in to comment.