Skip to content

Commit

Permalink
refactor: fix references to visuals
Browse files Browse the repository at this point in the history
  • Loading branch information
HagenFritz committed Jun 25, 2024
1 parent 2a0c878 commit a18855e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 363 deletions.
2 changes: 1 addition & 1 deletion smartpm/endpoints/activity.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pandas as pd

from smartpm.client import SmartPMClient
from smartpm.utils import plot_activity_distribution_by_month
from smartpm.visuals import plot_activity_distribution_by_month
from smartpm.decorators import api_wrapper, utility
from smartpm.logging_config import logger
from smartpm.endpoints.scenarios import Scenarios
Expand Down
2 changes: 1 addition & 1 deletion smartpm/endpoints/changes.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from smartpm.client import SmartPMClient
from smartpm.decorators import api_wrapper, utility
from smartpm.utils import plot_schedule_changes
from smartpm.visuals import plot_schedule_changes
from smartpm.logging_config import logger

class Changes:
Expand Down
2 changes: 1 addition & 1 deletion smartpm/endpoints/delay.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from smartpm.client import SmartPMClient
from smartpm.decorators import api_wrapper, utility
from smartpm.utils import plot_schedule_delay
from smartpm.visuals import plot_schedule_delay
from smartpm.logging_config import logger

class Delay:
Expand Down
2 changes: 1 addition & 1 deletion smartpm/endpoints/scenarios.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from smartpm.client import SmartPMClient
from smartpm.utils import plot_percent_complete_curve, plot_earned_schedule_curve
from smartpm.visuals import plot_percent_complete_curve, plot_earned_schedule_curve
from smartpm.decorators import api_wrapper, utility
from smartpm.logging_config import logger

Expand Down
359 changes: 0 additions & 359 deletions smartpm/utils.py

This file was deleted.

0 comments on commit a18855e

Please sign in to comment.