File tree 3 files changed +7
-8
lines changed
3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -426,15 +426,15 @@ def main():
426
426
print (err )
427
427
print ("Could not create peak function '%s'. Exiting." % options .peakfunction )
428
428
return
429
-
429
+
430
430
if options .modelevaluator :
431
431
try :
432
432
options .modelevaluator = eval ("modelevaluators." + options .modelevaluator )
433
433
except Exception as err :
434
434
print (err )
435
435
print ("Could not find ModelEvaluator '%s'. Exiting." % options .modelevaluator )
436
436
return
437
-
437
+
438
438
if options .bcrystal :
439
439
from diffpy .srmise .baselines .polynomial import Polynomial
440
440
@@ -471,12 +471,12 @@ def main():
471
471
472
472
bl = NanoSpherical ()
473
473
options .baseline = parsepars (bl , options .bspherical )
474
-
474
+
475
475
try :
476
-
476
+
477
477
print (options .baseline )
478
478
options .baseline = eval ("baselines." + options .baseline )
479
-
479
+
480
480
except Exception as err :
481
481
print (err )
482
482
print ("Could not create baseline '%s'. Exiting." % options .baseline )
Original file line number Diff line number Diff line change @@ -100,11 +100,10 @@ def __init__(
100
100
The class (not instance) which implements caching of BaseFunction
101
101
evaluations.
102
102
"""
103
-
103
+
104
104
self .parameterdict = parameterdict
105
105
self .npars = len (self .parameterdict )
106
106
107
-
108
107
# Checking all these things at run-time is a bit heavy-handed, but the
109
108
# overhead is small and it may prevent considerable confusion when
110
109
# developing new functions.
Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ def read(self, filename):
204
204
try :
205
205
# Open the file in binary mode, read it, and decode to convert bytes to string
206
206
with open (filename , "rb" ) as file :
207
- file_content = file .read ().decode (' utf-8' )
207
+ file_content = file .read ().decode (" utf-8" )
208
208
self .readStr (file_content )
209
209
except PDFDataFormatError as err :
210
210
basename = os .path .basename (filename )
You can’t perform that action at this time.
0 commit comments