driscollis / applications_with_wxpython

Code examples for the book, Creating GUI Application with wxPython
https://www.blog.pythonlibrary.org
116 stars 26 forks source link

Chapter 9 - main.py script text #18

Closed cmcknight closed 5 years ago

cmcknight commented 5 years ago

In the text of the book the start of main.py is:

# main.py

import wx

from advanced_search import RegularSearch
from regular_search import SearchResults
from pubsub import pub

The code in the repository reads:

# main.py

import wx

from advanced_search import AdvancedSearch
from regular_search import RegularSearch
from pubsub import pub
driscollis commented 5 years ago

Good catch. Sorry I missed that