ctny

Results 6 issues of ctny

It will be very helpful to add all the command line options to the text box in the About page, so people are aware these options actually exist.

line 13 is "from helpers.authentication import get_consumer_key", should be "from fhp.helpers.authentication..."

line 18, "api = FiveHundredPx(CONSUMER_KEY)" where "FiveHundredPx" is an unresolved reference.

line 12 is "from src.five_hundred_px import *", should be "from fhp.src.five_hundred_px import *", since there is no such module as "src".

line 13 is "from fhp import api", but should be "from fhp import api, src", otherwise the next statement "FiveHundredPx = src.five_hundred_px.FiveHundredPx" throws an error since "src" is not defined.