Skip to content

Commit

Permalink
Make ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhuppmann committed Mar 21, 2024
1 parent 5b012e2 commit 913c2cf
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions pyam/iiasa.py
Original file line number Diff line number Diff line change
Expand Up @@ -622,14 +622,10 @@ def read_iiasa(name, default_only=True, meta=True, creds=None, **kwargs):
)
return read_ixmp4(name, default_only=default_only, **kwargs)

return Connection(name, creds).query(
default_only=default_only, meta=meta, **kwargs
)
return Connection(name, creds).query(default_only=default_only, meta=meta, **kwargs)


def lazy_read_iiasa(
file, name, default_only=True, meta=True, creds=None, **kwargs
):
def lazy_read_iiasa(file, name, default_only=True, meta=True, creds=None, **kwargs):
"""
Try to load data from a local cache, failing that, loads it from an IIASA database.
Expand Down

0 comments on commit 913c2cf

Please sign in to comment.