mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-11 07:51:20 +00:00
8 lines
155 B
Python
8 lines
155 B
Python
from faker import Faker
|
|
|
|
from .user import UserFixtures
|
|
from .group import GroupFixtures
|
|
|
|
|
|
class Fixtures(UserFixtures, GroupFixtures):
|
|
fake = Faker()
|