1
0
mirror of https://github.com/quay/quay.git synced 2025-07-28 20:22:05 +03:00

fix all the docstrings

This commit is contained in:
alecmerdler
2020-02-05 19:55:07 -08:00
parent 17e6736575
commit 3dd5f045ff
463 changed files with 8851 additions and 5003 deletions

View File

@ -186,8 +186,12 @@ CSRF_TOKEN_KEY = "_csrf_token"
class AppConfigChange(object):
""" AppConfigChange takes a dictionary that overrides the global app config
for a given block of code. The values are restored on exit. """
"""
AppConfigChange takes a dictionary that overrides the global app config for a given block of
code.
The values are restored on exit.
"""
def __init__(self, changes=None):
self._changes = changes or {}