syntax: improve factories

This commit is contained in:
Matthieu Fesselier 2019-01-14 15:35:20 +07:00
parent 666cca49e5
commit de79b7aed3
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'))