Skip to content

Commit 70c3c03

Browse files
committed
fix: Incorrect definition of 'linked'
1 parent 572294f commit 70c3c03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/proxima/types/job.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def output_directory(self):
151151
def is_linked(self) -> bool:
152152
"""Job with linked media that may or may not be \"Offline\" """
153153

154-
if self.source.proxy_status in ["None", "Offline"]:
154+
if self.source.proxy_status == "None":
155155
return False
156156
return True
157157

0 commit comments

Comments
 (0)