You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
In Python, there are more efficient ways of checking whether a list is empty:
if arg_files:
This returns True if there is something in the list, and False if there is nothing.
We should find all the places where we have done this and change them.
The text was updated successfully, but these errors were encountered:
Currently in the Transformer code we check if a list is empty like this::
transformer/src/cloudimagedirectory/transformer.py
Line 46 in ce76508
In Python, there are more efficient ways of checking whether a list is empty:
This returns True if there is something in the list, and False if there is nothing.
We should find all the places where we have done this and change them.
The text was updated successfully, but these errors were encountered: