replace "N/A" with "Nothing" in docstrings

pull/1206/head
noah 2 years ago
parent a29df87d39
commit dc33c321d6

@ -27,7 +27,7 @@ class QueryNotify():
results for this query. results for this query.
Return Value: Return Value:
N/A. Nothing.
""" """
self.result = result self.result = result
@ -48,7 +48,7 @@ class QueryNotify():
Default is None. Default is None.
Return Value: Return Value:
N/A. Nothing.
""" """
return return
@ -65,7 +65,7 @@ class QueryNotify():
results for this query. results for this query.
Return Value: Return Value:
N/A. Nothing.
""" """
self.result = result self.result = result
@ -86,7 +86,7 @@ class QueryNotify():
Default is None. Default is None.
Return Value: Return Value:
N/A. Nothing.
""" """
return return
@ -125,7 +125,7 @@ class QueryNotifyPrint(QueryNotify):
color -- Boolean indicating whether to color terminal output color -- Boolean indicating whether to color terminal output
Return Value: Return Value:
N/A. Nothing.
""" """
# Colorama module's initialization. # Colorama module's initialization.
@ -149,7 +149,7 @@ class QueryNotifyPrint(QueryNotify):
of queries are about. of queries are about.
Return Value: Return Value:
N/A. Nothing.
""" """
title = "Checking username" title = "Checking username"
@ -175,7 +175,7 @@ class QueryNotifyPrint(QueryNotify):
results for this query. results for this query.
Return Value: Return Value:
N/A. Nothing.
""" """
self.result = result self.result = result

@ -58,7 +58,7 @@ class QueryResult():
Default of None. Default of None.
Return Value: Return Value:
N/A. Nothing.
""" """
self.username = username self.username = username

@ -64,7 +64,7 @@ class SherlockFuturesSession(FuturesSession):
kwargs -- Keyword arguments. kwargs -- Keyword arguments.
Return Value: Return Value:
N/A. Nothing.
""" """
resp.elapsed = monotonic() - start resp.elapsed = monotonic() - start

@ -46,7 +46,7 @@ class SiteInformation():
object for future use. object for future use.
Return Value: Return Value:
N/A. Nothing.
""" """
self.name = name self.name = name
@ -104,7 +104,7 @@ class SitesInformation():
default site list will be used. default site list will be used.
Return Value: Return Value:
N/A. Nothing.
""" """
if data_file_path is None: if data_file_path is None:

@ -17,7 +17,7 @@ class SherlockDetectTests(SherlockBaseTest):
self -- This object. self -- This object.
Return Value: Return Value:
N/A. Nothing.
Will trigger an assert if detection mechanism did not work as expected. Will trigger an assert if detection mechanism did not work as expected.
""" """
@ -44,7 +44,7 @@ class SherlockDetectTests(SherlockBaseTest):
self -- This object. self -- This object.
Return Value: Return Value:
N/A. Nothing.
Will trigger an assert if detection mechanism did not work as expected. Will trigger an assert if detection mechanism did not work as expected.
""" """
@ -71,7 +71,7 @@ class SherlockDetectTests(SherlockBaseTest):
self -- This object. self -- This object.
Return Value: Return Value:
N/A. Nothing.
Will trigger an assert if detection mechanism did not work as expected. Will trigger an assert if detection mechanism did not work as expected.
""" """
@ -98,7 +98,7 @@ class SherlockDetectTests(SherlockBaseTest):
self -- This object. self -- This object.
Return Value: Return Value:
N/A. Nothing.
Will trigger an assert if detection mechanism did not work as expected. Will trigger an assert if detection mechanism did not work as expected.
""" """
@ -125,7 +125,7 @@ class SherlockDetectTests(SherlockBaseTest):
self -- This object. self -- This object.
Return Value: Return Value:
N/A. Nothing.
Will trigger an assert if detection mechanism did not work as expected. Will trigger an assert if detection mechanism did not work as expected.
""" """
@ -152,7 +152,7 @@ class SherlockDetectTests(SherlockBaseTest):
self -- This object. self -- This object.
Return Value: Return Value:
N/A. Nothing.
Will trigger an assert if detection mechanism did not work as expected. Will trigger an assert if detection mechanism did not work as expected.
""" """
@ -181,7 +181,7 @@ class SherlockSiteCoverageTests(SherlockBaseTest):
self -- This object. self -- This object.
Return Value: Return Value:
N/A. Nothing.
Will trigger an assert if detection mechanism did not work as expected. Will trigger an assert if detection mechanism did not work as expected.
""" """
@ -199,7 +199,7 @@ class SherlockSiteCoverageTests(SherlockBaseTest):
self -- This object. self -- This object.
Return Value: Return Value:
N/A. Nothing.
Will trigger an assert if detection mechanism did not work as expected. Will trigger an assert if detection mechanism did not work as expected.
""" """
@ -217,7 +217,7 @@ class SherlockSiteCoverageTests(SherlockBaseTest):
self -- This object. self -- This object.
Return Value: Return Value:
N/A. Nothing.
Will trigger an assert if detection mechanism did not work as expected. Will trigger an assert if detection mechanism did not work as expected.
""" """
@ -235,7 +235,7 @@ class SherlockSiteCoverageTests(SherlockBaseTest):
self -- This object. self -- This object.
Return Value: Return Value:
N/A. Nothing.
Will trigger an assert if detection mechanism did not work as expected. Will trigger an assert if detection mechanism did not work as expected.
""" """
@ -253,7 +253,7 @@ class SherlockSiteCoverageTests(SherlockBaseTest):
self -- This object. self -- This object.
Return Value: Return Value:
N/A. Nothing.
Will trigger an assert if detection mechanism did not work as expected. Will trigger an assert if detection mechanism did not work as expected.
""" """
@ -271,7 +271,7 @@ class SherlockSiteCoverageTests(SherlockBaseTest):
self -- This object. self -- This object.
Return Value: Return Value:
N/A. Nothing.
Will trigger an assert if detection mechanism did not work as expected. Will trigger an assert if detection mechanism did not work as expected.
""" """
@ -288,7 +288,7 @@ class SherlockSiteCoverageTests(SherlockBaseTest):
self -- This object. self -- This object.
Return Value: Return Value:
N/A. Nothing.
Will trigger an assert if we do not have total coverage. Will trigger an assert if we do not have total coverage.
""" """

@ -23,7 +23,7 @@ class SherlockBaseTest(unittest.TestCase):
self -- This object. self -- This object.
Return Value: Return Value:
N/A. Nothing.
""" """
#This ignores the ResourceWarning from an unclosed SSLSocket. #This ignores the ResourceWarning from an unclosed SSLSocket.
@ -97,7 +97,7 @@ class SherlockBaseTest(unittest.TestCase):
or non-existence. or non-existence.
Return Value: Return Value:
N/A. Nothing.
Will trigger an assert if Username does not have the expected Will trigger an assert if Username does not have the expected
existence state. existence state.
""" """
@ -154,7 +154,7 @@ class SherlockBaseTest(unittest.TestCase):
or non-existence. or non-existence.
Return Value: Return Value:
N/A. Nothing.
Runs tests on all sites using the indicated detection algorithm Runs tests on all sites using the indicated detection algorithm
and which also has test vectors specified. and which also has test vectors specified.
Will trigger an assert if Username does not have the expected Will trigger an assert if Username does not have the expected
@ -208,7 +208,7 @@ class SherlockBaseTest(unittest.TestCase):
self -- This object. self -- This object.
Return Value: Return Value:
N/A. Nothing.
Counts up all Sites with full test data available. Counts up all Sites with full test data available.
Will trigger an assert if any Site does not have test coverage. Will trigger an assert if any Site does not have test coverage.
""" """

Loading…
Cancel
Save