From a45a57d1e4e878190d6c68814401450a27cf09a4 Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Mon, 8 Aug 2022 00:06:40 +0100 Subject: [PATCH] config.toml to gitignore --- .gitignore | 2 ++ README.md | 2 +- __main__.py | 2 +- config.toml | 2 -- 4 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 config.toml diff --git a/.gitignore b/.gitignore index ac8ab05..454d0df 100644 --- a/.gitignore +++ b/.gitignore @@ -129,3 +129,5 @@ dmypy.json # Pyre type checker .pyre/ + +config.toml \ No newline at end of file diff --git a/README.md b/README.md index dbf7f41..52cf594 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ A toml file named config.toml, placed into the current working directory of your ```toml [connection] -ip= +ip = "" ``` Alternatively you may pass it as a keyword argument. diff --git a/__main__.py b/__main__.py index 374bd97..1aa893a 100644 --- a/__main__.py +++ b/__main__.py @@ -12,6 +12,6 @@ def main(): if __name__ == "__main__": kind_id = "MR18" - ip = "mixer.local" + ip = "" main() diff --git a/config.toml b/config.toml deleted file mode 100644 index 2f68de6..0000000 --- a/config.toml +++ /dev/null @@ -1,2 +0,0 @@ -[connection] -ip=172.16.0.100 \ No newline at end of file