brynq-sdk-allsolutions 1.0.3__tar.gz → 1.0.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq_sdk_allsolutions
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: All solutions wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.0
2
2
  Name: brynq-sdk-allsolutions
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: All solutions wrapper from BrynQ
5
5
  Home-page: UNKNOWN
6
6
  Author: BrynQ
@@ -2,7 +2,7 @@ from setuptools import setup, find_namespace_packages
2
2
 
3
3
  setup(
4
4
  name='brynq_sdk_allsolutions',
5
- version='1.0.3',
5
+ version='1.0.4',
6
6
  description='All solutions wrapper from BrynQ',
7
7
  long_description='All solutions wrapper from BrynQ',
8
8
  author='BrynQ',
@@ -10,6 +10,7 @@ from brynq_sdk_brynq import BrynQ
10
10
  class AllSolutions(BrynQ):
11
11
  def __init__(self, interface_id: int, debug: bool = False):
12
12
  super().__init__()
13
+ self.timeout = 3600
13
14
  self.token = None
14
15
  self.refresh_token = None
15
16
  self.debug = debug
@@ -21,7 +22,6 @@ class AllSolutions(BrynQ):
21
22
  self.password = credentials['data']['password']
22
23
  self.content_type_header = {'Content-Type': 'application/json'}
23
24
  self.filter_freeform_string = "$filter-freeform"
24
- self.timeout = 3600
25
25
 
26
26
  # authentication functions
27
27
  def _get_refreshtoken(self):