Skip to content

Commit

Permalink
Merge pull request #6188 from fchapoton/add_missing_self
Browse files Browse the repository at this point in the history
missing self arguments
  • Loading branch information
AndrewVSutherland authored Sep 27, 2024
2 parents 9c592ae + 7a6b5bc commit 6f673a3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lmfdb/classical_modular_forms/test_cmf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class CmfTest(LmfdbTest):
def runTest():
def runTest(self):
pass

def test_expression_divides(self):
Expand Down
2 changes: 1 addition & 1 deletion lmfdb/classical_modular_forms/test_cmf2.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


class CmfTest(LmfdbTest):
def runTest():
def runTest(self):
pass

def test_download_qexp(self):
Expand Down
3 changes: 2 additions & 1 deletion lmfdb/ecnf/ecnf_test_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
from lmfdb.tests import LmfdbTest
from lmfdb import db


class ECNFTest(LmfdbTest):

def runTest():
def runTest(self):
pass

def test_d6_pages(self):
Expand Down
3 changes: 2 additions & 1 deletion lmfdb/genus2_curves/g2c_test_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
from lmfdb.tests import LmfdbTest
from lmfdb import db


class Genus2Test(LmfdbTest):

def runTest():
def runTest(self):
pass

def test_all_pages(self):
Expand Down
3 changes: 2 additions & 1 deletion lmfdb/siegel_modular_forms/smf_test_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
from lmfdb.tests import LmfdbTest
from lmfdb import db


class SMFPageTest(LmfdbTest):

def runTest():
def runTest(self):
pass

def test_all_pages(self):
Expand Down

0 comments on commit 6f673a3

Please sign in to comment.