Skip to content

Commit

Permalink
Merge pull request yfeng95#35 from ksachdeva/fix-python3-import
Browse files Browse the repository at this point in the history
fix - in render_app.py, import 'render' module using full path (as python3 does not support relative imports)
  • Loading branch information
yfeng95 authored Jun 1, 2018
2 parents e3dbba5 + 734960d commit 5f89185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/render_app.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import numpy as np
from render import vis_of_vertices, render_texture
from utils.render import vis_of_vertices, render_texture
from scipy import ndimage

def get_visibility(vertices, triangles, h, w):
Expand Down

0 comments on commit 5f89185

Please sign in to comment.