Skip to content

Commit

Permalink
fix print statement location
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaS11 committed Oct 6, 2023
1 parent 912a341 commit 93ea538
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions icepyx/quest/quest.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ def search_all(self, **kwargs):
print("\nSearching all datasets...")

for k, v in self.datasets.items():
print()
try:
print()
if isinstance(v, Query):
print("---ICESat-2---")
try:
Expand Down Expand Up @@ -189,8 +189,9 @@ def download_all(self, path="", **kwargs):
print("\nDownloading all datasets...")

for k, v in self.datasets.items():
print()
try:
print()

if isinstance(v, Query):
print("---ICESat-2---")
try:
Expand Down

0 comments on commit 93ea538

Please sign in to comment.