Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
romainsacchi committed Feb 11, 2024
1 parent 7a4c389 commit 6415e01
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion carculator_truck/inventory.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
"""
inventory.py contains Inventory which provides all methods to solve inventories.
"""
import warnings

import numpy as np
from carculator_utils.inventory import Inventory

from . import DATA_DIR

np.warnings.filterwarnings("ignore", category=np.VisibleDeprecationWarning)
warnings.filterwarnings("ignore", category=np.VisibleDeprecationWarning)

IAM_FILES_DIR = DATA_DIR / "IAM"

Expand Down

0 comments on commit 6415e01

Please sign in to comment.