Skip to content

Commit

Permalink
update outdated reference to Sets
Browse files Browse the repository at this point in the history
  • Loading branch information
bcdaniels committed Apr 13, 2022
1 parent 2d51a6f commit 2cf666a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions SirIsaac/fittingProblem.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@

# used in _findUsedVariables
import SloppyCell.ExprManip as ExprManip
import sets

from .simplePickle import load,save

Expand Down Expand Up @@ -2264,7 +2263,7 @@ def _findUsedVariables(self,net,data):
Find all variable names used to calculate the variables in data.keys()
in the given SloppyCell network 'net'.
"""
usedVariables = sets.Set(list(data.keys()))
usedVariables = set(list(data.keys()))
compList = [net.functionDefinitions,net.constraints, \
net.assignmentRules,net.rateRules,net.algebraicRules]

Expand Down

0 comments on commit 2cf666a

Please sign in to comment.