Skip to content

Commit

Permalink
fix mypy (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
MateoLostanlen authored Jan 24, 2024
1 parent e728935 commit e78fbc5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/callbacks/data_callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
from dash import dcc, html
from dash.dependencies import Input, Output, State
from dash.exceptions import PreventUpdate
from main import app
from pyroclient import Client

import config as cfg
from app import app
from services import api_client, call_api
from utils.data import (
past_ndays_api_events,
Expand Down
2 changes: 1 addition & 1 deletion app/callbacks/display_callbacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
from dash import html
from dash.dependencies import ALL, Input, Output, State
from dash.exceptions import PreventUpdate
from main import app

import config as cfg
from app import app
from services import api_client, call_api
from utils.data import read_stored_DataFrame
from utils.display import build_vision_polygon, create_event_list_from_df
Expand Down
2 changes: 1 addition & 1 deletion app/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
from dash import html
from dash.dependencies import Input, Output, State
from layouts.main_layout import get_main_layout
from main import app

import config as cfg
from app import app
from pages.homepage import homepage_layout
from pages.login import login_layout

Expand Down
File renamed without changes.

0 comments on commit e78fbc5

Please sign in to comment.