Skip to content

Commit

Permalink
Fixes TypeError: 'module' object is not callable
Browse files Browse the repository at this point in the history
  • Loading branch information
mattw-nws committed Jul 2, 2024
1 parent 8680dcf commit c3f5349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tethys_compute/models/dask/dask_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from tethys_portal.optional_dependencies import optional_import

# optional imports
Client = optional_import("client", from_module="dask.distributed")
Client = optional_import("Client", from_module="dask.distributed")

log = logging.getLogger("tethys." + __name__)

Expand Down

0 comments on commit c3f5349

Please sign in to comment.