Skip to content

Commit d8880cf

Browse files
coretlCito
authored andcommitted
Docs: Fix typo in sdl.rst (#48)
Missing parentheses in items() function call
1 parent c423676 commit d8880cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/usage/sdl.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ different from the names used for the episode.
5959

6060
So we would also need to manually define these values, like so::
6161

62-
for name, value in schema.get_type('Episode').values.items:
62+
for name, value in schema.get_type('Episode').values.items():
6363
value.value = EpisodeEnum[name].value
6464

6565
This would allow us to query the schema built from SDL just like the manually assembled

0 commit comments

Comments
 (0)