Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix 'typing' to 'typing_extensions' for python3.7 #313

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nerfstudio/data/dataparsers/monosdf_dataparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from dataclasses import dataclass, field
from glob import glob
from pathlib import Path
from typing import Dict, Literal, Optional, Type
from typing_extensions import Dict, Literal, Optional, Type

import cv2
import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion scripts/extract_mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from dataclasses import dataclass
from pathlib import Path
from typing import Literal, Tuple
from typing_extensions import Literal, Tuple

import torch
import tyro
Expand Down