Skip to content

Commit

Permalink
Merge pull request #217 from latchbio/kenny/typo
Browse files Browse the repository at this point in the history
typo
  • Loading branch information
ayushkamat authored Jan 12, 2023
2 parents 8fd57ad + b9a1094 commit e74f1b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions latch/resources/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,12 +208,12 @@ def _get_small_pod() -> Pod:
- GPU
- On-Demand
* - Request
- 46
- 90
- 176Gi
- 0
- True
* - Limit
- 48
- 96
- 196Gi
- 0
- True
Expand Down
4 changes: 2 additions & 2 deletions latch_cli/centromere/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def fake_import(name, globals=None, locals=None, fromlist=(), level=0):
fromlist=fromlist,
level=level,
)
except (ModuleNotFoundError, AttributeError):
except (ModuleNotFoundError, AttributeError) as e:
return FakeModule(name)

# Temporary ctx tells lytekit to skip local execution when
Expand Down Expand Up @@ -118,7 +118,7 @@ def _from_env():

# empty string for tls verify counts as "false".
# Any value or 'unset' counts as true.
tls_verify = environment.get("DOCKER_TLS_VERIFY") is not ""
tls_verify = environment.get("DOCKER_TLS_VERIFY") != ""

enable_tls = tls_verify or cert_path is not None

Expand Down

0 comments on commit e74f1b0

Please sign in to comment.