We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c414513 commit 987a881Copy full SHA for 987a881
proplot/__init__.py
@@ -32,22 +32,6 @@
32
if not _os.path.isdir(_rc_sub):
33
_os.mkdir(_rc_sub)
34
35
-# Initialize customization file
36
-_rc_file = _os.path.join(_os.path.expanduser('~'), '.proplotrc')
37
-_rc_file_default = _os.path.join(_os.path.dirname(__file__), '.proplotrc')
38
-if not _os.path.isfile(_rc_file):
39
- with open(_rc_file_default) as f:
40
- lines = ''.join(
41
- '# ' + line if line.strip() and line[0] != '#' else line
42
- for line in f.readlines()
43
- )
44
- with open(_rc_file, 'x') as f:
45
- f.write(
46
- '# User default settings\n'
47
- '# See https://proplot.readthedocs.io/en/latest/rctools.html\n'
48
- + lines
49
50
-
51
# SCM versioning
52
name = 'proplot'
53
try:
0 commit comments