Skip to content

Commit 4097d26

Browse files
committed
a few more little fixes
1 parent 18e0d58 commit 4097d26

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lmfdb/abvar/fq/isog_class.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def newton_plot(self):
178178
L += line([(i, 0), (i, ymax)], color="grey", thickness=0.5)
179179
for j in range(ymax+1):
180180
L += line([(0, j), (xmax, j)], color="grey", thickness=0.5)
181-
L+=line(pts,thickness=2)
181+
L += line(pts, thickness=2)
182182
for v in pts:
183183
L += circle(v, 0.06, fill=True)
184184
L.axes(False)

lmfdb/galois_groups/transitive_group.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def characters(self):
192192

193193
@lazy_attribute
194194
def conjclasses(self):
195-
if self.num_conjclasses()>CC_LIMIT:
195+
if self.num_conjclasses() > CC_LIMIT:
196196
return None
197197
g = self.gapgroupnt()
198198
n = self.n()
@@ -488,7 +488,7 @@ def group_cclasses_knowl_guts(n, t):
488488
rest += "<p><a title='Malle's constant $a(G)$' knowl='gg.malle_a'>'Malle's constant $a(G)$</a>: &nbsp; &nbsp;"
489489
wgg = WebGaloisGroup(label)
490490
if wgg.malle_a:
491-
rest += '$%s$'%str(wgg.malle_a)
491+
rest += '$%s$' % str(wgg.malle_a)
492492
else:
493493
rest += 'not computed'
494494
return rest

lmfdb/local_fields/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ def render_field_webpage(args):
470470
'subfields': format_subfields(data['subfield'],data['subfield_mult'],p),
471471
'aut': data['aut'],
472472
})
473-
friends=[]
473+
friends = []
474474
if 'slopes' in data:
475475
info.update({'slopes': show_slopes(data['slopes'])})
476476
if 'inertia' in data:

0 commit comments

Comments
 (0)