Skip to content

Commit 224cb33

Browse files
committed
refactor: minor code cleaning
1 parent 783ff78 commit 224cb33

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ check-all-docker: check-md check-yaml check-make check-pep8
3333

3434
check-all-local: check-pep8-local check-mypy check-lint
3535

36+
check-all: check-all-local check-all-docker
37+
3638
# =================================
3739

3840
check-md:

config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ def read_env(name: str, default_value: str) -> str:
2121

2222
# STORAGE_WEB_URL_BASE allows to specify alternative web url to
2323
# read files stored in STORAGE_DIRECTORY through HTTP/HTTPS.
24-
# It is expected those URL is served by standalone web server.
25-
# Optional setting, empty string disables this setting.
26-
# NOTE: value requires ending '/' character
24+
# It is expected those URLs are served by standalone web server.
25+
# Optional setting; empty string disables this setting.
26+
# NOTE: value requires ending with '/' character
2727
STORAGE_WEB_URL_BASE = read_env('LIMBO_STORAGE_WEB_URL_BASE', '')
2828

2929
MAX_STORAGE_SECONDS = int(read_env('LIMBO_MAX_STORAGE_SECONDS', str(24 * 3600)))

0 commit comments

Comments
 (0)