Skip to content

Commit 3204452

Browse files
committed
Pydocs fixes
1 parent ad0ce8f commit 3204452

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

reportportal_client/_local/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,15 @@
1010
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
# See the License for the specific language governing permissions and
1212
# limitations under the License
13-
"""Report Portal client context storing and retrieving module"""
13+
"""Report Portal client context storing and retrieving module."""
1414
from threading import local
1515

1616

1717
__INSTANCES = local()
1818

1919

2020
def current():
21-
"""Return current Report Portal client which is used by the current thread.
22-
"""
21+
"""Return current Report Portal client."""
2322
if hasattr(__INSTANCES, 'current'):
2423
return __INSTANCES.current
2524

0 commit comments

Comments
 (0)