Skip to content

Commit

Permalink
autopep8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
justusschock authored and actions-user committed Mar 20, 2020
1 parent ea82690 commit 03508ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion scripts/EssentialMatrixFromFundamentalMatrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@
pass


def get_essential_matrix(fundamental_matrix: float, calibration_matrix: float) -> float:
def get_essential_matrix(
fundamental_matrix: float,
calibration_matrix: float) -> float:
"""
This function obtains an essential matrix from Fundamental matrix
:param fundamental_matrix: 3x3 matrix with rank 2
Expand Down
2 changes: 1 addition & 1 deletion scripts/ExtractCameraPose.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# noinspection PyBroadException
try:
sys.path.remove('/opt/ros/kinetic/lib/python2.7/dist-packages')
except:
except BaseException:
pass


Expand Down

0 comments on commit 03508ad

Please sign in to comment.