You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change the spreadsheets that provide the input regions to remove {{BASE_DIR}}
Remove the code that processes {{BASE_DIR}} to the actual BASE_DIR variable
Add a function with the @Property decorator tho handle setting and getting the value for each of the major attributes
Add private variables for each attribute that store the real values, while continuing to access the value through the current names. The real names will be composed by the function by combining the base_dir and the remaining portion of the path from the private variable. The setter will check if the set path is absolute. If it is, and the first part matches BASE_DIR, it will strip off BASE_DIR from the front and store the rest in the private attribute (thus allowing other data outside of BASE_DIR to be used, although that should be frowned on during development)
@lilawren you might be interested in the implementation of this fix - check out the models code for regions - the first few methods handle this problem.
Need a better solution than the symlink fix for the unit testing server.
The text was updated successfully, but these errors were encountered: