mirror of
https://github.com/AdaCore/git-hooks.git
synced 2026-02-12 12:43:11 -08:00
This commit updates the pre-commit hook to black version 21.5b1. The hooks where then re-run on all files to update their formatting to this new version of black. Change-Id: Ib0866745ef8432cf93380a4d83fa23a479eb4a49
9 lines
164 B
Python
9 lines
164 B
Python
"""Exceptions while processing a reference update...
|
|
"""
|
|
|
|
|
|
class InvalidUpdate(Exception):
|
|
"""An exception raised when the update is not accepted."""
|
|
|
|
pass
|