Skip to content

Commit 9e75879

Browse files
committed
fix formatting issues
Signed-off-by: hwassman <[email protected]>
1 parent b7649c4 commit 9e75879

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

source/analytics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
inspect = False
2525

2626
global urllib3_debug
27-
urllib3_debug = 0
27+
urllib3_debug = 0

source/queryHandler/PerfmonRESTclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
except Exception:
3131
pass
3232

33-
try: # for Python 3
33+
try: # for Python 3
3434
from http.client import HTTPConnection
3535
except ImportError:
3636
from httplib import HTTPConnection

source/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def wrapper(*args: Any, **kwargs: Any) -> T:
5353

5454

5555
def cond_execution_time(enabled: bool = False, skip_attribute: bool = False) -> Callable[[Callable[..., T]], Callable[..., T]]:
56-
""" Conditionally logs the name of the given function f with
56+
""" Conditionally logs the name of the given function f with
5757
passed parameter values and the time it takes to execute it.
5858
"""
5959
def outer(f: Callable[..., T]) -> Callable[..., T]:

0 commit comments

Comments
 (0)