File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed
project-template/{{cookiecutter.repo_name}} Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ def chdir(path):
1313
1414def initialize (directory ):
1515 with chdir (directory ) as _working_dir :
16- with open (' some-file.txt' , 'w' ) as f :
16+ with open (" some-file.txt" , "w" ) as f :
1717 f .write ("Some content" )
1818
1919
@@ -23,7 +23,7 @@ def initialize(directory):
2323
2424def initialize (directory ):
2525 with chdir (directory ) as _working_dir :
26- with open (' some-file.txt' , 'w' ) as f :
26+ with open (" some-file.txt" , "w" ) as f :
2727 f .write ("Some content" )
2828
2929
@@ -35,6 +35,6 @@ def initialize(directory):
3535 old_dir = os .getcwd ()
3636 os .chdir (directory )
3737 os .chdir (old_dir )
38- with open (' some-file.txt' , 'w' ) as f :
38+ with open (" some-file.txt" , "w" ) as f :
3939 f .write ("Some content" )
4040 os .chdir (old_dir )
Original file line number Diff line number Diff line change 22
33from dataclasses import dataclass
44from pathlib import Path
5- from typing import (
6- Iterable ,
7- )
5+ from typing import Iterable
86
97
108@dataclass (frozen = True )
119class Config :
1210 root : Path = Path (__file__ ).parent
1311 doc : Path = Path (__file__ ).parent / "doc"
1412 version_file : Path = (
15- Path (__file__ ).parent / "exasol" / "{{cookiecutter.package_name}}" / "version.py"
13+ Path (__file__ ).parent
14+ / "exasol"
15+ / "{{cookiecutter.package_name}}"
16+ / "version.py"
1617 )
1718 path_filters : Iterable [str ] = (
1819 "dist" ,
Original file line number Diff line number Diff line change 11import {{ cookiecutter .import_package }}
22
3+
34def test_unit_smoke_test ():
45 assert True
You can’t perform that action at this time.
0 commit comments