Merge branch 'minor--improve-syntax' into 'master'

minor: improve factories

See merge request startinblox/djangoldp-packages/djangoldp-notifications!4
This commit is contained in:
Matthieu Fesselier 2019-01-14 08:36:34 +00:00
commit f7c889cb54
1 changed files with 1 additions and 3 deletions

View File

@ -8,7 +8,5 @@ class Command(BaseCommand):
parser.add_argument('--size', type=int, default=0, help='Number of notifications to create')
def handle(self, *args, **options):
for i in range(0, options['size']):
notif = NotificationFactory.create()
NotificationFactory.create_batch(options['size'])
self.stdout.write(self.style.SUCCESS('Successful data mock install'))