Skip to content

Commit

Permalink
Set up CI and Danger integration
Browse files Browse the repository at this point in the history
  • Loading branch information
robertodr committed Oct 3, 2017
1 parent 05040c0 commit 61d6b67
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .style.yapf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[style]
COLUMN_LIMIT = 119
INDENT_WIDTH = 4
USE_TABS = False
7 changes: 7 additions & 0 deletions hello_world.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
def vector(dim):
import numpy as np


return np.random.rand(dim)

def message():
return 'Hello, Danger world!'

def main():
print(message())
print(vector(10))

if __name__ == '__main__':
main()
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
yapf
futures

0 comments on commit 61d6b67

Please sign in to comment.