Skip to content

Commit

Permalink
Fix typings (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 authored Apr 9, 2023
1 parent 7b44a1c commit 75e3f03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion oct2py/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


try:
from pandas import DataFrame, Series # type:ignore
from pandas import DataFrame, Series
except Exception:

class Series: # type:ignore
Expand Down
2 changes: 1 addition & 1 deletion oct2py/tests/test_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from io import StringIO

import numpy as np
import pandas as pd # type:ignore
import pandas as pd
import pytest

import oct2py
Expand Down

0 comments on commit 75e3f03

Please sign in to comment.