Skip to content

Commit

Permalink
remove include_schema
Browse files Browse the repository at this point in the history
  • Loading branch information
ericgitonga authored Sep 25, 2023
1 parent a48df29 commit d6a15fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ecoscope/io/earthranger.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,8 +484,8 @@ def get_subjectgroup_observations(self, subject_group=None, group_name=None, inc

return self.get_subject_observations(subject_ids, **kwargs)

def get_event_types(self, include_inactive=False, include_schema=False, **addl_kwargs):
params = self._clean_kwargs(addl_kwargs, include_inactive=include_inactive, include_schema=include_schema)
def get_event_types(self, include_inactive=False, **addl_kwargs):
params = self._clean_kwargs(addl_kwargs, include_inactive=include_inactive)

return pd.DataFrame(self._get("activity/events/eventtypes", **params))

Expand Down

0 comments on commit d6a15fd

Please sign in to comment.