We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b5e850 commit 2c211e5Copy full SHA for 2c211e5
1 file changed
wacruit/src/apps/portfolio/file/services.py
@@ -122,4 +122,10 @@ def get_all_applicant_user_ids(self) -> list[int]:
122
s3_bucket=self._s3_config.bucket_name,
123
s3_prefix="",
124
)
125
- return list(set(int(obj.split("/")[0]) for obj in objects))
+ return list(
126
+ set(
127
+ int(obj.split("/")[0])
128
+ for obj in objects
129
+ if "/" in obj and obj.split("/")[0].isdigit()
130
+ )
131
0 commit comments