Skip to content

Commit

Permalink
fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
MateoLostanlen committed Jan 24, 2024
1 parent 58e9692 commit 8a525d9
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 8a525d9

Please sign in to comment.