Run this and you will get an error related to being unable to relative import:
python example.py
# Just in case you think that this might be related. |
from .sibling import SomeObject | |
s = SomeObject() |
class SomeObject(object): | |
def __init__(self): | |
print('Some object worked. wtf?!') |