Skip to content

Commit 0b73e3c

Browse files
committed
Fix F841 ruff lint
1 parent 844fd9d commit 0b73e3c

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

channelfinder/cfMonitorTest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131

3232

3333
def main():
34-
requiredOpts = ["initial-file", "final-file"]
3534
usage = "usage: %prog -i initial-file -f final-file directory "
3635
parser = OptionParser(usage=usage)
3736
parser.add_option(

channelfinder/cfPropertyManager/CFPropertyManager.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,6 @@
3030
exclusion_expression = ""
3131

3232

33-
def test_mode():
34-
test = True
35-
verbose = True
36-
quiet = False
37-
38-
3933
def readDBL(path):
4034
"""
4135
reads and stores .dbl file for processing

test/testChannelFinderClient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ def testCreateAndDeletePropertyWithChannel(self):
436436
"channels": [ch],
437437
}
438438
try:
439-
result = self.clientProp.set(property=testProperty)
439+
_ = self.clientProp.set(property=testProperty)
440440
foundProperty = self.client.findProperty(testProperty["name"])
441441
self.assertIsNotNone(foundProperty, "failed to create a test property")
442442
self.assertTrue(

0 commit comments

Comments
 (0)