Skip to content

Commit 2cde854

Browse files
committed
Make the query options/parameters properties private
I don't think this is an API we should commit to, we want to move towards exposing a query object. The _query attribute is also private right now because we want to think through what the query object itself should look like before exposing as a public API.
1 parent c3a4890 commit 2cde854

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

earthaccess/results.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -683,11 +683,11 @@ def _repr_html_(self) -> str:
683683
""")
684684

685685
@property
686-
def query_parameters(self):
686+
def _query_parameters(self):
687687
return self._query.params
688688

689689
@property
690-
def query_options(self):
690+
def _query_options(self):
691691
return self._query.options
692692

693693
def to_gdf(self) -> GeoDataFrame:

0 commit comments

Comments
 (0)