Skip to content

Commit

Permalink
Move import statement to the top of the document. Fixes linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
kdp-cloud committed Apr 11, 2024
1 parent 5d854fc commit ce987e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mars-cli/mars_lib/credential.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import keyring
import os
import getpass
import keyring.util.platform_ as keyring_platform

"""
Credential Manager Module
Expand Down Expand Up @@ -42,7 +43,6 @@
# Don't forget to handle exceptions and secure your credentials properly.
"""
import keyring.util.platform_ as keyring_platform

print(keyring_platform.config_root())
# /home/username/.config/python_keyring # Might be different for you
Expand Down

0 comments on commit ce987e3

Please sign in to comment.