Skip to content

Commit

Permalink
Fix typo in datasets.make_people
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Oct 9, 2018
1 parent 8d817d8 commit 585cc71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dask/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ def make_people(npartitions=10, records_per_partition=1000, seed=None, locale='e
'telephone': field('person.telephone'),
'address': {'address': field('address.address'),
'city': field('address.city')},
'credt-card': {'number': field('payment.credit_card_number'),
'expiration-date': field('payment.credit_card_expiration_date')},
'credit-card': {'number': field('payment.credit_card_number'),
'expiration-date': field('payment.credit_card_expiration_date')},
}

return _make_mimesis({'locale': locale}, schema, npartitions, records_per_partition, seed)

0 comments on commit 585cc71

Please sign in to comment.