Skip to content

Commit

Permalink
Update copyright year and delete path
Browse files Browse the repository at this point in the history
  • Loading branch information
ruhland-tim committed Jul 23, 2024
1 parent 554acff commit a5923f6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dcc/dcc.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Python module for processing of digital calibration certificates (DCC)
# according to https://www.ptb.de/dcc/
#
# Copyright (c) Siemens AG, 2024
# Copyright (c) Siemens AG, 2021
#
# Authors:
# Andreas Tobola, Siemens AG
Expand Down
8 changes: 2 additions & 6 deletions examples/read_QoX_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,8 @@


import sys
sys.path.append("../dcc/")
# from dcc import DCC
import numpy as np

# TODO: REMOVE
sys.path.append(r"D:\git_projects\pydcc")
sys.path.append("../dcc/")
from dcc.dcc import DCC


Expand Down Expand Up @@ -99,7 +95,7 @@ def extract_quantities(d):
if __name__ == '__main__':

# Load DCC and create the DCC object (dcco)
dcco = DCC('D:/git_projects/pydcc/data/dcc/dcc_gp_temperature_typical_v12_QoX.xml')
dcco = DCC('../data/dcc/dcc_gp_temperature_typical_v12_QoX.xml')

if not dcco.status_report.is_loaded:
print("Error: DCC was not loaded successfully!")
Expand Down
2 changes: 1 addition & 1 deletion tests/unit_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Python module for processing of digital calibration certificates (DCC)
# according to https://www.ptb.de/dcc/
#
# Copyright (c) Siemens AG, 2024
# Copyright (c) Siemens AG, 2021
#
# Authors:
# Andreas Tobola, Siemens AG
Expand Down

1 comment on commit a5923f6

@Tobola
Copy link
Collaborator

@Tobola Tobola commented on a5923f6 Jul 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thx

Please sign in to comment.