summaryrefslogtreecommitdiff
path: root/steamrelationships/constants.py
diff options
context:
space:
mode:
Diffstat (limited to 'steamrelationships/constants.py')
-rw-r--r--steamrelationships/constants.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/steamrelationships/constants.py b/steamrelationships/constants.py
index af35733..cf52151 100644
--- a/steamrelationships/constants.py
+++ b/steamrelationships/constants.py
@@ -9,4 +9,12 @@ def constant(f):
9class _Const(object): 9class _Const(object):
10 @constant 10 @constant
11 def STEAMAPI_MAXREQ() -> int: 11 def STEAMAPI_MAXREQ() -> int:
12 return 100000 \ No newline at end of file 12 return 100000
13
14 @constant
15 def DAY_IN_NANO() -> int:
16 return (8.64 * (10 ** 13))
17
18 @constant
19 def JSON_INDENT() -> int:
20 return 4 \ No newline at end of file