Skip to content

Commit

Permalink
Fixed linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MichielTukker committed Nov 14, 2024
1 parent 407393a commit 7a7f6ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/simulator_worker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"""__init__.py file containing the defaults."""
import os

from omotes_sdk import setup_logging, LogLevel
from omotes_sdk import LogLevel, setup_logging

from simulator_worker.simulator_worker import start_app
from simulator_worker.simulator_worker import start_app as start_app

setup_logging(LogLevel.parse(os.environ.get("LOG_LEVEL", "INFO")), "simulator_worker")
2 changes: 1 addition & 1 deletion src/simulator_worker/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import os
import uuid
from datetime import datetime
from typing import Any, Dict, List, Tuple, Type, TypeAlias, TypeVar, cast
from typing import Dict, List, Tuple, Type, TypeVar, cast

import esdl
import pandas as pd
Expand Down

0 comments on commit 7a7f6ad

Please sign in to comment.