diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2022-01-17 19:47:01 +0000 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2022-01-17 19:47:01 +0000 |
commit | 06ec17c5e65d03ffd14a60ce89fe71234eb81c8a (patch) | |
tree | 89f52069d6b39b387f8644cd83a4f70c02180e58 /ExampleAssessments | |
parent | 37236fdc957f5900f6a4bbffbff6ccc07d412c44 (diff) | |
download | Smarker-06ec17c5e65d03ffd14a60ce89fe71234eb81c8a.tar.gz Smarker-06ec17c5e65d03ffd14a60ce89fe71234eb81c8a.zip |
added getting class inheritance tree, getting method args nicely, fixed bug with importing too many modules
Diffstat (limited to 'ExampleAssessments')
-rw-r--r-- | ExampleAssessments/example.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ExampleAssessments/example.yml b/ExampleAssessments/example.yml index 2ca03d3..bab1fb0 100644 --- a/ExampleAssessments/example.yml +++ b/ExampleAssessments/example.yml @@ -11,6 +11,12 @@ files: - hello_world(2) - an_undocumented_function(0) - aFunctionThatIsntThere(2) + - greet(2) - aFileThatIsntThere.py: functions: - - hello_world(2)
\ No newline at end of file + - hello_world(2) + - animals.py: + classes: + - Dog: + - Cat: + - Kitten:
\ No newline at end of file |