aboutsummaryrefslogtreecommitdiffstats
path: root/influx.py
diff options
context:
space:
mode:
Diffstat (limited to 'influx.py')
-rw-r--r--influx.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/influx.py b/influx.py
index b51d8f5..9437831 100644
--- a/influx.py
+++ b/influx.py
@@ -21,8 +21,8 @@ class Influx:
@staticmethod
def _rmspace(key: str = None, value: (str, int) = None):
try:
- key = key.replace(" ", "\ ")
- value = value.replace(" ", "\ ")
+ key = key.replace(" ", "\ ") # noqa: W605
+ value = value.replace(" ", "\ ") # noqa: W605
except (TypeError, AttributeError):
pass