Skip to content

Commit 71611d0

Browse files
committed
fix flake issues
1 parent 7266e35 commit 71611d0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

obspy/clients/seishub/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ def __init__(self, base_url="http://teide.geophysik.uni-muenchen.de:8080",
118118
:type retries: int
119119
:param retries: Number of retries for failing requests.
120120
"""
121-
msg = "The module obspy.client.seishub is deprecated and will be removed " + \
122-
"in the next major release."
121+
msg = "The module obspy.client.seishub is deprecated and will be " + \
122+
"removed in the next major release."
123123
warnings.warn(msg, ObsPyDeprecationWarning)
124124
self.base_url = base_url
125125
self.waveform = _WaveformMapperClient(self)

obspy/db/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ def __init__(self, url=None, session=None, debug=False):
4545
:type debug: bool, optional
4646
:param debug: Enables verbose output.
4747
"""
48-
msg = "The module obspy.client.seishub is deprecated and will be removed " + \
49-
"in the next major release."
48+
msg = "The module obspy.client.seishub is deprecated and will " + \
49+
"be removed in the next major release."
5050
warnings.warn(msg, ObsPyDeprecationWarning)
5151
if url:
5252
self.engine = create_engine(url, encoding='utf-8',

0 commit comments

Comments
 (0)