Files
git-hooks/hooks/updates/notes/creation.py
2013-12-26 15:06:08 +04:00

12 lines
380 B
Python

"""Handling of Git Notes creation."""
from updates.notes.update import NotesUpdate
class NotesCreation(NotesUpdate):
"""Update object for Git Notes creation."""
# Notes creation is a special case of Notes Update, where the
# old_rev is the null revision. The NotesUpdate class currently
# handles everything correctly for us, so no extra code needed.
pass