Skip to content

Commit

Permalink
Remove useless dependency to six in loop_sm for testing loading.
Browse files Browse the repository at this point in the history
  • Loading branch information
ValentinHirschi committed Apr 2, 2024
1 parent 2de52c0 commit 4a45449
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from __future__ import absolute_import
import cmath
import re
import six
#import six


class UFOError(Exception):
Expand Down Expand Up @@ -132,7 +132,7 @@ def anti(self):
if self.selfconjugate:
raise Exception('%s has no anti particle.' % self.name)
outdic = {}
for k,v in six.iteritems(self.__dict__):
for k,v in self.__dict__.items():#six.iteritems(self.__dict__):
if k not in self.require_args_all:
outdic[k] = -v
if self.color in [1,8]:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

from __future__ import absolute_import
from six.moves import range
#from six.moves import range
__date__ = "3 june 2010"
__author__ = '[email protected]'

Expand Down

0 comments on commit 4a45449

Please sign in to comment.