diff --git a/swh/lister/github/models.py b/swh/lister/github/models.py index a82c2e1..32055a7 100644 --- a/swh/lister/github/models.py +++ b/swh/lister/github/models.py @@ -16,4 +16,5 @@ class GitHubModel(ModelBase): fork = Column(Boolean) def __init__(self, *args, **kwargs): + self.fork = kwargs.pop('fork', False) super().__init__(*args, **kwargs)