Skip to content

Commit

Permalink
ignore unused import in pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
eagmon committed Aug 18, 2023
1 parent c3272ff commit fe0a821
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vivarium/core/serialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@

import orjson
import numpy as np
from pint import Unit
from pint import Unit # pylint: disable=unused-import
try:
from pint.quantity import Quantity
from pint.quantity import Quantity # pylint: disable=unused-import
except ImportError:
from pint import Quantity
from pint import Quantity # pylint: disable=unused-import
from vivarium.core.process import Process
from vivarium.library.units import units
from vivarium.core.registry import serializer_registry, Serializer
Expand Down

0 comments on commit fe0a821

Please sign in to comment.