diff options
author | Max Wittig <max.wittig95@gmail.com> | 2019-05-16 18:00:34 +0200 |
---|---|---|
committer | Max Wittig <max.wittig95@gmail.com> | 2019-05-16 18:03:56 +0200 |
commit | 318d2770cbc90ae4d33170274e214b9d828bca43 (patch) | |
tree | c5b6d6d9b57f6642dca83ea33956a4d5ae15e5eb /gitlab/const.py | |
parent | ef32990347d0ab9145b8919d25269766dc2ce445 (diff) | |
download | gitlab-refactor/black.tar.gz |
refactor: format everything blackrefactor/black
Diffstat (limited to 'gitlab/const.py')
-rw-r--r-- | gitlab/const.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gitlab/const.py b/gitlab/const.py index 62f2403..aef4a40 100644 --- a/gitlab/const.py +++ b/gitlab/const.py @@ -26,9 +26,9 @@ VISIBILITY_PRIVATE = 0 VISIBILITY_INTERNAL = 10 VISIBILITY_PUBLIC = 20 -NOTIFICATION_LEVEL_DISABLED = 'disabled' -NOTIFICATION_LEVEL_PARTICIPATING = 'participating' -NOTIFICATION_LEVEL_WATCH = 'watch' -NOTIFICATION_LEVEL_GLOBAL = 'global' -NOTIFICATION_LEVEL_MENTION = 'mention' -NOTIFICATION_LEVEL_CUSTOM = 'custom' +NOTIFICATION_LEVEL_DISABLED = "disabled" +NOTIFICATION_LEVEL_PARTICIPATING = "participating" +NOTIFICATION_LEVEL_WATCH = "watch" +NOTIFICATION_LEVEL_GLOBAL = "global" +NOTIFICATION_LEVEL_MENTION = "mention" +NOTIFICATION_LEVEL_CUSTOM = "custom" |