Skip to content

Commit 3e2793f

Browse files
committed
Remove comments
1 parent ee59497 commit 3e2793f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tldr.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
'https://tldr-pages.github.io/assets/tldr.zip'
3131
)
3232

33-
USE_NETWORK = int(os.environ.get('TLDR_NETWORK_ENABLED', '1')) > 0 # Defaults to True
34-
USE_CACHE = int(os.environ.get('TLDR_CACHE_ENABLED', '1')) > 0 # Defaults to True
35-
MAX_CACHE_AGE = int(os.environ.get('TLDR_CACHE_MAX_AGE', 168)) # Defaults to 168 hours (a week)
33+
USE_NETWORK = int(os.environ.get('TLDR_NETWORK_ENABLED', '1')) > 0
34+
USE_CACHE = int(os.environ.get('TLDR_CACHE_ENABLED', '1')) > 0
35+
MAX_CACHE_AGE = int(os.environ.get('TLDR_CACHE_MAX_AGE', 168))
3636

3737
URLOPEN_CONTEXT = None
3838
if int(os.environ.get('TLDR_ALLOW_INSECURE', '0')) == 1:

0 commit comments

Comments
 (0)