Skip to content

Commit

Permalink
unused arg
Browse files Browse the repository at this point in the history
  • Loading branch information
shimwell committed Apr 29, 2024
1 parent 0a19417 commit c9a1771
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/geouned/GEOUNED/Utils/Qform.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import math

import FreeCAD
import Part


def RotationMatrix(u, v):
Expand Down
4 changes: 2 additions & 2 deletions src/geouned/GEOUNED/Write/OpenMCFormat.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def writeXML(self, filename):
self.inpfile.close()
return

def __write_xml_header__(self, fileout):
def __write_xml_header__(self):
Header = "<?xml version='1.0' encoding='UTF-8'?>\n"
self.inpfile.write(Header)
return
Expand Down Expand Up @@ -113,7 +113,7 @@ def writePY(self, filename):
self.inpfile.close()
return

def __write_py_header__(self, fileout):
def __write_py_header__(self):

Header = """\
# openMC geometry script generated by GEOUNED
Expand Down
2 changes: 1 addition & 1 deletion src/geouned/GEOUNED/Write/PHITSFormat.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def writePHITS(self, filename):
self.inpfile.close()
return

def __write_PHITS_header__(self, fileout):
def __write_PHITS_header__(self):

version = GEOUNED_Version
releaseDate = GEOUNED_ReleaseDate
Expand Down
2 changes: 1 addition & 1 deletion src/geouned/GEOUNED/Write/SerpentFormat.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def writeInput(self, filename):
self.inpfile.close()
return

def __write_header__(self, fileout):
def __write_header__(self):

version = GEOUNED_Version
releaseDate = GEOUNED_ReleaseDate
Expand Down

0 comments on commit c9a1771

Please sign in to comment.