From dfeec9faa1119ad10fc6bd63c1fee6b6b66c3f9b Mon Sep 17 00:00:00 2001 From: Robbert Schep Date: Mon, 7 Jul 2025 14:39:20 +0200 Subject: [PATCH] fix: Correct SyntaxError in setup.py --- setup.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index e94df09..1818f48 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,3 @@ -# setup.py import os from setuptools import setup from setuptools.command.install import install @@ -15,7 +14,6 @@ setup( version='1.0.0', description='A wrapper to build and serve the MkDocs site on Clever Cloud.', cmdclass={ - cmdclass={ - 'mkdocs': BuildMkDocsCommand, -} + 'mkdocs': BuildMkDocsCommand, + } )