Skip to content
This repository has been archived by the owner on Aug 4, 2018. It is now read-only.

Commit

Permalink
Fixed flake8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kidk committed Dec 9, 2016
1 parent a704509 commit 15bf5fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ def watchdog(sec):
args=(self.options.getMaximumExectionTime(),)
).start()


# Initiate thread and dataqueue
threadQueue = Queue()
dataQueue = Queue()

Expand Down
1 change: 1 addition & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,5 +94,6 @@ def main(args):
# Start worker
felt.run()


if __name__ == "__main__":
sys.exit(main(sys.argv[1:]))
1 change: 1 addition & 0 deletions tests/ScenarioParserTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,6 @@ def test_random(self):
self.assertEqual(element["action"], "set_value")
self.assertEqual(element["selector"], "input#random")


if __name__ == '__main__':
unittest.main()

0 comments on commit 15bf5fc

Please sign in to comment.