Skip to content

Commit

Permalink
using a redundant alias
Browse files Browse the repository at this point in the history
  • Loading branch information
samjrholt committed Jun 4, 2024
1 parent a87dd70 commit a6c4296
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ubermagtable/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import matplotlib.pyplot as plt
import pytest

from .interact import interact
from .table import Table
from .interact import interact as interact
from .table import Table as Table

# Enable default plotting style.
dirname = os.path.abspath(os.path.dirname(__file__))
Expand Down
4 changes: 3 additions & 1 deletion ubermagtable/util/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Utility tools"""

from .util import columns, data, units
from .util import columns as columns
from .util import data as data
from .util import units as units

0 comments on commit a6c4296

Please sign in to comment.