Skip to content

Commit

Permalink
CLEAN product_footprint.py - general code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnVonNeumann committed Jun 6, 2024
1 parent 0f85de2 commit 1f4a22d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions pathfinder_framework/product_footprint/product_footprint.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
from datetime import datetime

from pathfinder_framework.carbon_footprint.carbon_footprint import CarbonFootprint
from pathfinder_framework.data_model_extension.data_model_extension import DataModelExtension
from pathfinder_framework.datetime import DateTime
from pathfinder_framework.product_footprint.id import ProductFootprintId
from pathfinder_framework.product_footprint.status import ProductFootprintStatus
from pathfinder_framework.urn import CompanyId, ProductId
from pathfinder_framework.product_footprint.cpc import CPC
from pathfinder_framework.product_footprint.version import Version
from pathfinder_framework.datetime import DateTime
from pathfinder_framework.product_footprint.validity_period import ValidityPeriod
from pathfinder_framework.data_model_extension.data_model_extension import DataModelExtension
from pathfinder_framework.urn import CompanyId, ProductId


class ProductFootprint:
Expand Down Expand Up @@ -121,4 +119,4 @@ def __init__(self, *, id: ProductFootprintId | None = None, spec_version: str =

def __repr__(self) -> str:
"""Returns a string representation of the ProductFootprint instance."""
return f"ProductFootprint(id={self.id})"
return f"ProductFootprint(id={self.id})"

0 comments on commit 1f4a22d

Please sign in to comment.