Skip to content

Commit

Permalink
renamed other_assets.py to _other_assets.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeqfu committed Jul 6, 2020
1 parent 6784ede commit 49e5f4b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyrcs/other_assets.py → pyrcs/_other_assets.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
""" Other assets """

from pyrcs.other_assets_cls import depots, features, signal_boxes, stations, tunnels, viaducts
from pyrcs.utils import get_cls_menu
from pyrcs.other_assets import *
from utils import get_category_menu, homepage_url


class OtherAssets:
def __init__(self):
# Basic info
self.HomeURL = 'http://www.railwaycodes.org.uk'
self.Name = 'Other assets'
self.HomeURL = homepage_url()
self.URL = self.HomeURL + '/otherassetsmenu.shtm'
self.Catalogue = get_cls_menu(self.URL)
self.Catalogue = get_category_menu(self.URL)
# Classes
self.SignalBoxes = signal_boxes.SignalBoxes()
self.Tunnels = tunnels.Tunnels()
Expand Down

0 comments on commit 49e5f4b

Please sign in to comment.