From aea4fea5a2bf5d4c9b9a35532f342d4fb24fa8d7 Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Thu, 12 Dec 2019 09:56:26 +0100 Subject: [PATCH] Set black target version explicitly --- examples/removebot.py | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/removebot.py b/examples/removebot.py index 1e76608..90f63c1 100644 --- a/examples/removebot.py +++ b/examples/removebot.py @@ -15,7 +15,7 @@ class RemoveBot(Client): message_object=message_object, thread_id=thread_id, thread_type=thread_type, - **kwargs + **kwargs, ) diff --git a/pyproject.toml b/pyproject.toml index fa008f4..f586ea2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,6 @@ [tool.black] line-length = 88 +target-version = ['py36', 'py37', 'py38'] [build-system] requires = ["flit"]