Skip to content

Commit

Permalink
raise limit for nr columns to 160
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume committed Aug 19, 2022
1 parent fddb0e9 commit 7e735c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mpcontribs-api/mpcontribs/api/projects/document.py
Expand Up @@ -21,7 +21,7 @@
from mpcontribs.api import send_email, valid_key, valid_dict, delimiter, enter

PROVIDERS = {"github", "google", "facebook", "microsoft", "amazon", "portier"}
MAX_COLUMNS = 100
MAX_COLUMNS = 160


def visit(path, key, value):
Expand Down
2 changes: 1 addition & 1 deletion mpcontribs-client/mpcontribs/client/__init__.py
Expand Up @@ -62,7 +62,7 @@
MEGABYTES = 1024 * 1024
MAX_BYTES = 2.4 * MEGABYTES
MAX_PAYLOAD = 15 * MEGABYTES
MAX_COLUMNS = 100
MAX_COLUMNS = 160
DEFAULT_HOST = "contribs-api.materialsproject.org"
BULMA = "is-narrow is-fullwidth has-background-light"
PROVIDERS = {"github", "google", "facebook", "microsoft", "amazon"}
Expand Down

0 comments on commit 7e735c1

Please sign in to comment.