From b6cc63a0dfca2c04edd0e103da7cfb5d4cf0f919 Mon Sep 17 00:00:00 2001 From: Dpeta <69427753+Dpeta@users.noreply.github.com> Date: Mon, 13 Feb 2023 17:43:48 +0100 Subject: [PATCH] Rename 'profile.py' to avoid conflict with the standard library 'profile' module. --- pesterchum.py | 2 +- profile.py => user_profile.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) rename profile.py => user_profile.py (99%) diff --git a/pesterchum.py b/pesterchum.py index 5a164c1..df12d25 100755 --- a/pesterchum.py +++ b/pesterchum.py @@ -24,7 +24,7 @@ if ostools.isLinux(): # import console from pnc.dep.attrdict import AttrDict -from profile import userConfig, userProfile, pesterTheme, PesterLog, PesterProfileDB +from user_profile import userConfig, userProfile, pesterTheme, PesterLog, PesterProfileDB from menus import ( PesterChooseQuirks, PesterChooseTheme, diff --git a/profile.py b/user_profile.py similarity index 99% rename from profile.py rename to user_profile.py index a06020d..23caadf 100644 --- a/profile.py +++ b/user_profile.py @@ -1,3 +1,4 @@ +"""Renamed from 'profile.py' to avoid conflict with standard library 'profile' module.""" import os import sys import json