We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad0ce8f commit 3204452Copy full SHA for 3204452
reportportal_client/_local/__init__.py
@@ -10,16 +10,15 @@
10
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
# See the License for the specific language governing permissions and
12
# limitations under the License
13
-"""Report Portal client context storing and retrieving module"""
+"""Report Portal client context storing and retrieving module."""
14
from threading import local
15
16
17
__INSTANCES = local()
18
19
20
def current():
21
- """Return current Report Portal client which is used by the current thread.
22
- """
+ """Return current Report Portal client."""
23
if hasattr(__INSTANCES, 'current'):
24
return __INSTANCES.current
25
0 commit comments