TehMillhouse / PyMarkovChain

Simple markov chain implementation in python
Other
97 stars 17 forks source link

Quick fix for the quick fix (from __future__ moved to top) #8

Closed tswicegood closed 10 years ago

tswicegood commented 10 years ago

This doesn't run in Python 2.7.5 (didn't try other versions) as the from __future__ ... import must happen at the top.

TehMillhouse commented 10 years ago

Thanks for catching this, I only tried it in the REPL, which doesn't care about import order.