-
Notifications
You must be signed in to change notification settings - Fork 44
Open
Labels
Description
balena-sdk-python/balena/settings.py
Line 3 in 7a9be5f
| import os.path as Path |
Starting with python 3.4, pathlib became - to the best of my knowledge - the de facto way of handling paths in an object-oriented way.
While we will not be able to simply replace the above with
from pathlib import Pathwithout breaking anything, there is a somewhat of an official migration guide at https://docs.python.org/3/library/pathlib.html#correspondence-to-tools-in-the-os-module
Originally posted by @pranasziaukas in #326 (comment)