Skip to content

Commit

Permalink
remove remote check
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminpkane committed Oct 4, 2024
1 parent b375477 commit 2496795
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fiftyone/core/session/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ def wait(self, wait: float = 3) -> None:
if wait < 0:
while True:
time.sleep(10)
elif self.remote:
else:
self._wait_closed = False
while not self._wait_closed:
time.sleep(wait)
Expand Down

0 comments on commit 2496795

Please sign in to comment.