Format fixes from black
This commit is contained in:
parent
5404521458
commit
78ef9c531b
2 changed files with 4 additions and 2 deletions
|
|
@ -245,7 +245,9 @@ def extension_action(args=None):
|
||||||
# Run the action
|
# Run the action
|
||||||
return func(self.extension, **arguments)
|
return func(self.extension, **arguments)
|
||||||
|
|
||||||
def get(self, *args, **kwargs): # pylint: disable=useless-super-delegation,arguments-differ
|
def get(
|
||||||
|
self, *args, **kwargs
|
||||||
|
): # pylint: disable=useless-super-delegation,arguments-differ
|
||||||
# Explicitly wrap the `get` method to allow us to add a docstring
|
# Explicitly wrap the `get` method to allow us to add a docstring
|
||||||
return super().get(*args, **kwargs)
|
return super().get(*args, **kwargs)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -121,7 +121,7 @@ class CaptureObject(object):
|
||||||
|
|
||||||
def open(self, mode):
|
def open(self, mode):
|
||||||
# We don't specify an encoding because this will be a binary file.
|
# We don't specify an encoding because this will be a binary file.
|
||||||
return open(self.file, mode) # pylint: disable=unspecified-encoding
|
return open(self.file, mode) # pylint: disable=unspecified-encoding
|
||||||
|
|
||||||
def split_file_path(self, filepath: str):
|
def split_file_path(self, filepath: str):
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue