Skip to content

Commit

Permalink
Merge branch 'folder-as-resource' into fix-docker-folder-fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
jlewitt1 committed Aug 14, 2024
2 parents 568ca0b + 2d24c8a commit 9f813e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runhouse/resources/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ def to(
>>> local_module = rh.module(my_class)
>>> cluster_module = local_module.to("my_cluster")
"""
if system == self.system and env == self.env and not force_install:
if system == self.system and env == self.env:
if name and not self.name == name:
# TODO return duplicate object under new name, don't rename
self.rename(name)
Expand Down

0 comments on commit 9f813e9

Please sign in to comment.