napsternxg commited on
Commit
673a510
1 Parent(s): 098daae

Update nyt_ingredients.py

Browse files
Files changed (1) hide show
  1. nyt_ingredients.py +7 -7
nyt_ingredients.py CHANGED
@@ -47,25 +47,25 @@ _URLS = {
47
  import json
48
 
49
 
50
- class NYTIngedientsConfig(datasets.BuilderConfig):
51
- """The NYTIngedients Dataset."""
52
 
53
  def __init__(self, **kwargs):
54
- """BuilderConfig for NYTIngedients.
55
  Args:
56
  **kwargs: keyword arguments forwarded to super.
57
  """
58
  super(NYTIngedientsConfig, self).__init__(**kwargs)
59
 
60
 
61
- class NYTIngedients(datasets.GeneratorBasedBuilder):
62
- """The NYTIngedients Dataset."""
63
 
64
  BUILDER_CONFIGS = [
65
- NYTIngedientsConfig(
66
  name="nyt_ingredients",
67
  version=datasets.Version("1.0.0"),
68
- description="The NYTIngedients Dataset",
69
  ),
70
  ]
71
 
 
47
  import json
48
 
49
 
50
+ class NYTIngredientsConfig(datasets.BuilderConfig):
51
+ """The NYT Ingredients Dataset."""
52
 
53
  def __init__(self, **kwargs):
54
+ """BuilderConfig for NYT Ingredients.
55
  Args:
56
  **kwargs: keyword arguments forwarded to super.
57
  """
58
  super(NYTIngedientsConfig, self).__init__(**kwargs)
59
 
60
 
61
+ class NYTIngredients(datasets.GeneratorBasedBuilder):
62
+ """The NYT Ingredients Dataset."""
63
 
64
  BUILDER_CONFIGS = [
65
+ NYTIngredientsConfig(
66
  name="nyt_ingredients",
67
  version=datasets.Version("1.0.0"),
68
+ description="The NYT Ingredients Dataset",
69
  ),
70
  ]
71