Skip to content

Commit a794de7

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent a941786 commit a794de7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intake_esm/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ def search(
421421
if derivedcat_results:
422422
# Merge results from the main and the derived catalogs
423423
esmcat_results = pd.concat([esmcat_results, *derivedcat_results])
424-
esmcat_results = (esmcat_results[~esmcat_results.astype(str).duplicated()])
424+
esmcat_results = esmcat_results[~esmcat_results.astype(str).duplicated()]
425425

426426
cat = self.__class__({'esmcat': self.esmcat.dict(), 'df': esmcat_results})
427427
cat.esmcat.catalog_file = None # Don't save the catalog file

0 commit comments

Comments
 (0)