Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
gmaze committed Sep 18, 2024
1 parent 55b3723 commit 8ebd896
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions argopy/data_fetchers/gdac_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ def __init__(
def __repr__(self):
summary = ["<datafetcher.gdac>"]
summary.append("Name: %s" % self.definition)
summary.append("Index: %s" % self.indexfs.index_file)
summary.append("Server: %s" % self.server)
summary.append("Index: %s (%s)" % (self.indexfs.index_file, self.indexfs.convention_title))
summary.append("Host: %s" % self.server)
if hasattr(self, "BOX"):
summary.append("Domain: %s" % self.cname())
else:
Expand Down
3 changes: 0 additions & 3 deletions argopy/tests/test_fetchers_data_gdac.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,11 @@
import shutil
from urllib.parse import urlparse
import logging
from collections import ChainMap

import argopy
from argopy import DataFetcher as ArgoDataFetcher
from argopy.errors import (
CacheFileNotFound,
FileSystemHasNoCache,
GdacPathError,
)
from argopy.utils.checkers import isconnected, is_list_of_strings
from utils import requires_gdac
Expand Down

0 comments on commit 8ebd896

Please sign in to comment.