Skip to content

Commit

Permalink
Apply black, isort, and autoflake formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 18, 2023
1 parent 521c9b5 commit b85ee90
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kubejobs/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ def __init__(
self.cpu_request = (
cpu_request
if cpu_request
else MAX_CPU // (MAX_GPU - (1 if gpu_limit is None else gpu_limit) + 1)
else MAX_CPU
// (MAX_GPU - (1 if gpu_limit is None else gpu_limit) + 1)
)
self.ram_request = (
ram_request
Expand Down

0 comments on commit b85ee90

Please sign in to comment.