Skip to content

Commit

Permalink
remove double parenthesis in read_pyaro.py L299
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisblake authored and thorbjoernl committed Oct 8, 2024
1 parent efd2bcb commit ce4ca29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyaerocom/io/pyaro/read_pyaro.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def get_variables(self) -> list[str]:
return self.reader.variables()

def get_stations(self) -> dict[str, Station]:
return self.reader.stations()()
return self.reader.stations()

def read(self, vars_to_retrieve=None) -> UngriddedData:
allowed_vars = self.get_variables()
Expand Down

0 comments on commit ce4ca29

Please sign in to comment.