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
A lot of functions are wrapped in try .. except blocks with a catch-all Exception handler. In some cases, the block is doing things that aren't likely to cause exceptions (like appending items to a list). We should have more specific exception handlers and only have them where necessary.
The text was updated successfully, but these errors were encountered:
- Names: camelCase to snake_case for all function, argument, and
variable names.
- Prefix functions with the name/type of the service they relate to:
e.g., gin_ensure_token and drone_ensure_secrets.
- Horizontal function signatures (instead of vertically stacking args).
- Removed small one-use functions that were creating single-key
dictionaries and replaced with literals.
- Renamed annexFiles to input_files and backPushFiles to output_files
- Cleared out some catch-all exception handling that seemed unnecessary.
This needs more work since there's a lot of catch-all exception blocks
that need revising. See issue #54.
A lot of functions are wrapped in
try .. except
blocks with a catch-allException
handler. In some cases, the block is doing things that aren't likely to cause exceptions (like appending items to a list). We should have more specific exception handlers and only have them where necessary.The text was updated successfully, but these errors were encountered: