Skip to content

Commit

Permalink
correct imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Spycho committed Nov 25, 2022
1 parent ec72438 commit 3823e28
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/simulation/des_aware_logging.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import logging
from logging import StreamHandler

from src.simulation import time_provider
from simulation import time_provider


class Handler(StreamHandler):
Expand Down
2 changes: 1 addition & 1 deletion src/simulation/discrete_event_scheduler.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import logging

from src.simulation import time_provider
from simulation import time_provider

logger = logging.getLogger(__name__)

Expand Down
4 changes: 2 additions & 2 deletions src/simulation/sim.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import random

from src.simulation import des_aware_logging
from src.simulation.discrete_event_scheduler import DiscreteEventScheduler
from simulation import des_aware_logging
from simulation.discrete_event_scheduler import DiscreteEventScheduler


def run_sim(initial_event, post_processing=None):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_sim.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from src.simulation import sim
from simulation import sim


def test_sim():
Expand Down

0 comments on commit 3823e28

Please sign in to comment.