Skip to content

Commit 60bfd18

Browse files
committed
Additional coding standard fix (bad quotes)
1 parent 3fb6bef commit 60bfd18

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

odm2api/services/readService.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ def getResults(self, ids=None, restype=None, uuids=None, actionid=None, simulati
798798
if actionid:
799799
query = query.join(FeatureActions).filter_by(ActionID=actionid)
800800
if 'sfid' in kwargs:
801-
warnings.warn("The parameter 'sfid' is deprecated. "
801+
warnings.warn("The parameter 'sfid' is deprecated. " +
802802
"Please use the sfids parameter instead and send in a list.",
803803
DeprecationWarning, stacklevel=2)
804804
if kwargs['sfid']:
@@ -1415,8 +1415,8 @@ def getResultValues(self, resultids, starttime=None, endtime=None, lowercols=Tru
14151415
df.columns = [self._get_columns(ResultValues)[c] for c in df.columns]
14161416
else:
14171417
warnings.warn(
1418-
"In a near-future release, "
1419-
"the parameter 'lowercols' default will be changed to False, "
1418+
"In a near-future release, " +
1419+
"the parameter 'lowercols' default will be changed to False, " +
14201420
"and later the parameter may be removed.",
14211421
DeprecationWarning, stacklevel=2)
14221422
return df

0 commit comments

Comments
 (0)