mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-09 09:21:46 +00:00
Fix duplicated assignments
This commit is contained in:
@@ -208,7 +208,7 @@ class IfcGit:
|
||||
@classmethod
|
||||
def get_commits_list(cls, path_ifc: str, lookup: dict[str, Any]) -> None:
|
||||
|
||||
props = props = cls.get_ifcgit_props()
|
||||
props = cls.get_ifcgit_props()
|
||||
repo = cls.repo_from_path(path_ifc)
|
||||
commits = list(
|
||||
git.objects.commit.Commit.iter_items(
|
||||
|
||||
@@ -72,7 +72,7 @@ class TestEnableEditing(NewFile):
|
||||
|
||||
class TestEnableEditingStyles(NewFile):
|
||||
def test_run(self):
|
||||
props = props = tool.Style.get_style_props()
|
||||
props = tool.Style.get_style_props()
|
||||
props.is_editing = False
|
||||
subject.enable_editing_styles()
|
||||
assert props.is_editing is True
|
||||
|
||||
Reference in New Issue
Block a user