Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-vdm committed Aug 9, 2024
1 parent be4cb20 commit 6380972
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion ab_plugin_scenariolink/tables/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@
This module contains the models for the tables used in the ScenarioLink plugin.
"""

from logging import getLogger
from urllib.error import HTTPError, URLError
import pandas as pd

from activity_browser.ui.tables.models import PandasModel
from activity_browser import log
from ..utils import download_files_from_zenodo, package_from_path, record_cached
from ..signals import signals

log = getLogger(__name__)


class FoldsModel(PandasModel):
"""
Expand Down
4 changes: 3 additions & 1 deletion ab_plugin_scenariolink/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@
from typing import Tuple
from tqdm import tqdm
import hashlib
from logging import getLogger

from PySide2 import QtWidgets
from PySide2.QtWidgets import QApplication
from PySide2.QtCore import Qt

from activity_browser import log

log = getLogger(__name__)


def unfold_databases(
Expand Down

0 comments on commit 6380972

Please sign in to comment.