Skip to content

Commit

Permalink
fix pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
Jianbo Ye committed May 8, 2024
1 parent 3fdf61f commit 7855120
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nerfstudio/process_data/realitycapture_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import json
import shutil
from pathlib import Path
from typing import Dict, List
from typing import Dict, List, Optional

import numpy as np
from PIL import Image
Expand All @@ -30,7 +30,7 @@
def realitycapture_to_json(
image_filename_map: Dict[str, Path],
csv_filename: Path,
ply_filename: Path,
ply_filename: Optional[Path],
output_dir: Path,
verbose: bool = False,
) -> List[str]:
Expand Down

0 comments on commit 7855120

Please sign in to comment.