Skip to content
Snippets Groups Projects
Commit 5d981400 authored by Anders H. Rebner's avatar Anders H. Rebner
Browse files

Fikset duplisert kode

parent 093cb1e9
No related branches found
No related tags found
1 merge request!40#38 #39 Eksporter og importer SOI til/fra fil
"""Test exporting codebook to PDF.""" """Test exporting codebook to PDF."""
import unittest import unittest
import os import os
from functools import partial
from pathlib import Path from pathlib import Path
from datetime import datetime from datetime import datetime
from soitool import codebook_to_pdf from soitool import codebook_to_pdf
......
...@@ -6,7 +6,6 @@ from pathlib import Path ...@@ -6,7 +6,6 @@ from pathlib import Path
from datetime import datetime from datetime import datetime
from schema import Schema, And, Or from schema import Schema, And, Or
from PySide2.QtWidgets import QApplication from PySide2.QtWidgets import QApplication
from PySide2 import QtGui
from soitool.soi import SOI from soitool.soi import SOI
from soitool.modules.module_table import TableModule from soitool.modules.module_table import TableModule
from soitool.serialize_export_import_soi import ( from soitool.serialize_export_import_soi import (
...@@ -15,10 +14,9 @@ from soitool.serialize_export_import_soi import ( ...@@ -15,10 +14,9 @@ from soitool.serialize_export_import_soi import (
import_soi, import_soi,
) )
if isinstance(QtGui.qApp, type(None)): app = QApplication.instance()
if app is None:
app = QApplication([]) app = QApplication([])
else:
app = QtGui.qApp
SOITOOL_ROOT_PATH = Path(__file__).parent.parent SOITOOL_ROOT_PATH = Path(__file__).parent.parent
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment