summaryrefslogtreecommitdiff
path: root/buildscripts/resmokeconfig/loggers/__init__.py
diff options
context:
space:
mode:
authorJonathan Abrahams <jonathan@mongodb.com>2018-03-27 14:30:46 -0400
committerJonathan Abrahams <jonathan@mongodb.com>2018-04-05 14:41:58 -0400
commitc50c68fef179d9306f1a3432f48985bf20555e38 (patch)
treea1c208329a090c54a8a1f02558b2be87b830a8ab /buildscripts/resmokeconfig/loggers/__init__.py
parenta5dacf7092f51055dd774a1911a48815bb9a1e0e (diff)
downloadmongo-c50c68fef179d9306f1a3432f48985bf20555e38.tar.gz
SERVER-23312 Python linting - Lint using pylint, pydocstyle & mypy
Diffstat (limited to 'buildscripts/resmokeconfig/loggers/__init__.py')
-rw-r--r--buildscripts/resmokeconfig/loggers/__init__.py11
1 files changed, 3 insertions, 8 deletions
diff --git a/buildscripts/resmokeconfig/loggers/__init__.py b/buildscripts/resmokeconfig/loggers/__init__.py
index 1cecd4d110e..5342639c567 100644
--- a/buildscripts/resmokeconfig/loggers/__init__.py
+++ b/buildscripts/resmokeconfig/loggers/__init__.py
@@ -1,7 +1,4 @@
-"""
-Defines a mapping of shortened names for logger configuration files to
-their full path.
-"""
+"""Defines a mapping of shortened names for logger configuration files to their full path."""
from __future__ import absolute_import
@@ -10,11 +7,9 @@ import os.path
def _get_named_loggers():
- """
- Explores this directory for any YAML configuration files.
+ """Explore this directory for any YAML configuration files.
- Returns a mapping of basenames without the file extension to their
- full path.
+ Returns a mapping of basenames without the file extension to their full path.
"""
dirname = os.path.dirname(__file__)