git-p4: remove spaces between dictionary keys and colons

PEP8 makes no specific recommendation about spaces preceding colons in
dictionary declarations, but all the code examples contained with it
declare dictionaries with a single space after the colon, and none
before.

Signed-off-by: Joel Holdsworth <jholdsworth@nvidia.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Joel Holdsworth 2022-04-01 15:24:56 +01:00 коммит произвёл Junio C Hamano
Родитель 968e29e16b
Коммит 2bcf611088
1 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

@ -4379,13 +4379,13 @@ def printUsage(commands):
commands = {
"submit" : P4Submit,
"commit" : P4Submit,
"sync" : P4Sync,
"rebase" : P4Rebase,
"clone" : P4Clone,
"branches" : P4Branches,
"unshelve" : P4Unshelve,
"submit": P4Submit,
"commit": P4Submit,
"sync": P4Sync,
"rebase": P4Rebase,
"clone": P4Clone,
"branches": P4Branches,
"unshelve": P4Unshelve,
}