TypeError: unbound method make_request() must be called with XX instance, but how?
- by Dave
Running the code below I get
E TypeError: unbound method make_request() must be called with A instance as first argument (got str instance instead)
I dont want to set make_request method as static, I want to call it from an instance of an object.
The example http://pytest.org/latest/fixture.html#fixture-function
# content of…