mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-12-14 11:26:24 +08:00
Address black + isort fbsource linter warnings
Summary: Address black + isort fbsource linter warnings from D20558374 (previous diff) Reviewed By: nikhilaravi Differential Revision: D20558373 fbshipit-source-id: d3607de4a01fb24c0d5269634563a7914bddf1c8
This commit is contained in:
committed by
Facebook GitHub Bot
parent
eb512ffde3
commit
d57daa6f85
@@ -8,6 +8,7 @@ TODO: python 3.8 when pytorch 1.4.
|
||||
"""
|
||||
|
||||
import os.path
|
||||
|
||||
import jinja2
|
||||
import yaml
|
||||
|
||||
@@ -45,9 +46,7 @@ def workflow_pair(
|
||||
):
|
||||
|
||||
w = []
|
||||
base_workflow_name = (
|
||||
f"{prefix}binary_linux_{btype}_py{python_version}_{cu_version}"
|
||||
)
|
||||
base_workflow_name = f"{prefix}binary_linux_{btype}_py{python_version}_{cu_version}"
|
||||
|
||||
w.append(
|
||||
generate_base_workflow(
|
||||
@@ -94,9 +93,7 @@ def generate_base_workflow(
|
||||
return {f"binary_linux_{btype}": d}
|
||||
|
||||
|
||||
def generate_upload_workflow(
|
||||
*, base_workflow_name, btype, cu_version, filter_branch
|
||||
):
|
||||
def generate_upload_workflow(*, base_workflow_name, btype, cu_version, filter_branch):
|
||||
d = {
|
||||
"name": f"{base_workflow_name}_upload",
|
||||
"context": "org-member",
|
||||
|
||||
Reference in New Issue
Block a user