Skip to content

Commit 3be260e

Browse files
jacobaustin123copybara-github
authored andcommitted
Fixed line-too-long linting issue in Python 2.7.
PiperOrigin-RevId: 339900581 Change-Id: Ibedaed45ffca68f8b12344f8905b4ff379c6e589
1 parent fea0be7 commit 3be260e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fire/main_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def testFileNameModuleDuplication(self):
7878
def testFileNameModuleFileFailure(self):
7979
# Confirm that an invalid file that masks a non-existent module fails.
8080
with self.assertRaisesRegex(ValueError,
81-
r'Fire can only be called on \.py files\.'): # pylint: disable=line-too-long # pytype: disable=attribute-error
81+
r'Fire can only be called on \.py files\.'): # pylint: disable=line-too-long, # pytype: disable=attribute-error
8282
dirname = os.path.dirname(self.file.name)
8383
with testutils.ChangeDirectory(dirname):
8484
with open('foobar', 'w'):

0 commit comments

Comments
 (0)