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
char = '/' if 'Linux' in platform.system() else '\\' in LiquidMetalInterface.set_custom_properties_path() method (even on the set_custom_properties_path Improvement #110 branch): its purpose can be automatically handled by a Path object depending on the current running station (Path implement a / operator to do so).
The text was updated successfully, but these errors were encountered:
os.path
and literal paths can be refactored to usepathlib.Path
objects. This enhancement could provide a better OS interoperability handling.Some examples:
setup.py
uses"directory/filename.extension"
strings,char = '/' if 'Linux' in platform.system() else '\\'
inLiquidMetalInterface.set_custom_properties_path()
method (even on the set_custom_properties_path Improvement #110 branch): its purpose can be automatically handled by a Path object depending on the current running station (Path implement a/
operator to do so).The text was updated successfully, but these errors were encountered: