Skip to content

Commit

Permalink
Cleaned up merge conflict messages
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulp13 committed Feb 9, 2022
1 parent f3b317a commit df1d5af
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions src/frontEnd/Application.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
# =========================================================================

import os
import traceback # noqa:F401

import traceback
if os.name == 'nt': # noqa
Expand Down Expand Up @@ -557,31 +556,13 @@ def open_ngspice(self):

if self.projDir is not None:

self.obj_Mainview.obj_dockarea.ngspiceEditor(self.projDir)
if self.obj_Mainview.obj_dockarea.ngspiceEditor(
self.projDir) is False:
print(
"No netlist (*.cir.out) file"
"Check netlist file to change simulation parameters."
)

self.msg = QtWidgets.QErrorMessage()
self.msg.setModal(True)
self.msg.setWindowTitle("Warning Message")
self.msg.showMessage(
'No netlist (*.cir.out) file'
)
self.msg.exec_()
return
=======
# Edited by Sumanto Kar 25/08/2021
if self.obj_Mainview.obj_dockarea.ngspiceEditor(
self.projDir) is False:
print(
"No netlist file (*.cir.out)"
"Check netlist file to change simulation parameters."
)
>>>>>>> master

self.msg = QtWidgets.QErrorMessage()
self.msg.setModal(True)
Expand Down

0 comments on commit df1d5af

Please sign in to comment.