Skip to content

Commit

Permalink
Fix for suggestion applied blindly during review (#86)
Browse files Browse the repository at this point in the history
Signed-off-by: Rodrigo Tobar <[email protected]>
  • Loading branch information
rtobar authored Oct 13, 2023
1 parent a9af369 commit b61542c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sphinxlint/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def __call__(self, parser, namespace, values, option_string=None):

class StoreNumJobsAction(argparse.Action):
def __call__(self, parser, namespace, values, option_string=None):
setattr(namespace, self.dest, self._job_count(values))
setattr(namespace, self.dest, self.job_count(values))

@staticmethod
def job_count(values):
Expand Down

0 comments on commit b61542c

Please sign in to comment.