Skip to content

Commit

Permalink
Merge pull request #457 from robertatakenaka/fix_article_data
Browse files Browse the repository at this point in the history
Corrige ausência de self. em data
  • Loading branch information
robertatakenaka authored May 13, 2024
2 parents 6d91613 + 0979f2b commit 91234dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions article/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ def data(self):
issue=self.issue.data,
journal=self.journal.data,
pid_v3=self.pid_v3,
created=created.isoformat(),
updated=updated.isoformat(),
created=self.created.isoformat(),
updated=self.updated.isoformat(),
)

@classmethod
Expand Down

0 comments on commit 91234dd

Please sign in to comment.